Title: [256374] trunk/Source/WebInspectorUI
Revision
256374
Author
nvasil...@apple.com
Date
2020-02-11 14:38:23 -0800 (Tue, 11 Feb 2020)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (256373 => 256374)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-02-11 22:36:56 UTC (rev 256373)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-02-11 22:38:23 UTC (rev 256374)
@@ -1,3 +1,20 @@
+2020-02-11  Nikita Vasilyev  <nvasil...@apple.com>
+
+        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):
+
 2020-02-09  Keith Rollin  <krol...@apple.com>
 
         Re-enable LTO for ARM builds

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css (256373 => 256374)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css	2020-02-11 22:36:56 UTC (rev 256373)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css	2020-02-11 22:38:23 UTC (rev 256374)
@@ -131,6 +131,10 @@
     margin-right: var(--item-padding-end);
 }
 
+.tree-outline.dom li > span > .html-text-node {
+    unicode-bidi: isolate-override;
+}
+
 .tree-outline.dom li .pseudo-class-indicator {
     display: inline-block;
     position: absolute;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to