I updated this CL by adding `IsOrderedListReversed` extra field in ComputedStyle. Would you review this, please?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
name: "IsOrderedListReversed",
field_template: "primitive",
type_name: "bool",
field_group: "*",
default_value: "false",I checked Firefox's devtools with below HTML file, it converts `reversed` attribute to `counter-reset: reversed(list-item)` style.
```
<!doctype html>
<title>Overriding reversed attribute of ol by counter-reset: reversed(counter)</title>
<ol reversed>
<li>One
<li>Two
<li>Three
</ol>
```
I think I need to use CounterDirectives rather than the extra field?
name: "IsOrderedListReversed",
field_template: "primitive",
type_name: "bool",
field_group: "*",
default_value: "false",I checked Firefox's devtools with below HTML file, it converts `reversed` attribute to `counter-reset: reversed(list-item)` style.
```
<!doctype html>
<title>Overriding reversed attribute of ol by counter-reset: reversed(counter)</title>
<ol reversed>
<li>One
<li>Two
<li>Three
</ol>
```I think I need to use CounterDirectives rather than the extra field?
I think so, yes.
But, please, note that most people are out for holdiays (at least this week), so there won't be much review (this week)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |