Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/core/html/html_element.cc
Insertions: 2, Deletions: 0.
@@ -2692,6 +2692,8 @@
}
if (const LayoutObject* layout_object = GetLayoutObject()) {
+ // Note that this isn't part of the HTML spec's concept, but we've
+ // always honored CSS directionality for the title attribute.
direction = layout_object->StyleRef().Direction();
}
if (RuntimeEnabledFeatures::AttributeDirectionalityEnabled() &&
```
Implement "directionality of an attribute" and use it for title.
This implements the HTML spec's concept of "directionality of an
attribute" (which can differ from the element's direction for certain
attributes when the element has dir=auto), and uses that concept for the
directionality of the title attribute (which is the only place blink was
using the element directionality with the value of an attribute).
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |