Changeset 256374 in webkit


Ignore:
Timestamp:
Feb 11, 2020 2:38:23 PM (4 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector RTL: Elements closing tag is reversed
https://bugs.webkit.org/show_bug.cgi?id=207214

Reviewed by Timothy Hatcher.

Wrap text nodes in unicode-bidi: isolate-override. From MDN:

isolate-override:

This keyword applies the isolation behavior of the isolate
keyword to the surrounding content and the override behavior
of the bidi-override keyword to the inner content.

  • UserInterface/Views/DOMTreeOutline.css:

(.tree-outline.dom li > span > .html-text-node):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r256108 r256374  
     12020-02-11  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector RTL: Elements closing tag is reversed
     4        https://bugs.webkit.org/show_bug.cgi?id=207214
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        Wrap text nodes in `unicode-bidi: isolate-override`. From MDN:
     9
     10        isolate-override:
     11            This keyword applies the isolation behavior of the isolate
     12            keyword to the surrounding content and the override behavior
     13            of the bidi-override keyword to the inner content.
     14
     15        * UserInterface/Views/DOMTreeOutline.css:
     16        (.tree-outline.dom li > span > .html-text-node):
     17
    1182020-02-09  Keith Rollin  <krollin@apple.com>
    219
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css

    r251302 r256374  
    132132}
    133133
     134.tree-outline.dom li > span > .html-text-node {
     135    unicode-bidi: isolate-override;
     136}
     137
    134138.tree-outline.dom li .pseudo-class-indicator {
    135139    display: inline-block;
Note: See TracChangeset for help on using the changeset viewer.