Title: [142447] trunk/Source/WebCore
Revision
142447
Author
commit-qu...@webkit.org
Date
2013-02-11 03:29:03 -0800 (Mon, 11 Feb 2013)

Log Message

Web Inspector: displaying whitespace characters is broken
https://bugs.webkit.org/show_bug.cgi?id=109412

Patch by Andrey Lushnikov <lushni...@chromium.org> on 2013-02-11
Reviewed by Vsevolod Vlasov.

Add "pointer-events: none" rule for pseudo-class "before", which
maintains rendering of whitespace characters.

No new tests.

* inspector/front-end/inspectorSyntaxHighlight.css:
(.webkit-whitespace::before):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142446 => 142447)


--- trunk/Source/WebCore/ChangeLog	2013-02-11 11:17:28 UTC (rev 142446)
+++ trunk/Source/WebCore/ChangeLog	2013-02-11 11:29:03 UTC (rev 142447)
@@ -1,3 +1,18 @@
+2013-02-11  Andrey Lushnikov  <lushni...@chromium.org>
+
+        Web Inspector: displaying whitespace characters is broken
+        https://bugs.webkit.org/show_bug.cgi?id=109412
+
+        Reviewed by Vsevolod Vlasov.
+
+        Add "pointer-events: none" rule for pseudo-class "before", which
+        maintains rendering of whitespace characters.
+
+        No new tests.
+
+        * inspector/front-end/inspectorSyntaxHighlight.css:
+        (.webkit-whitespace::before):
+
 2013-02-11  Alexander Pavlov  <apav...@chromium.org>
 
         Web Inspector: Implement position-based sourcemapping for stylesheets

Modified: trunk/Source/WebCore/inspector/front-end/inspectorSyntaxHighlight.css (142446 => 142447)


--- trunk/Source/WebCore/inspector/front-end/inspectorSyntaxHighlight.css	2013-02-11 11:17:28 UTC (rev 142446)
+++ trunk/Source/WebCore/inspector/front-end/inspectorSyntaxHighlight.css	2013-02-11 11:29:03 UTC (rev 142447)
@@ -92,6 +92,7 @@
 
 .webkit-whitespace::before {
     position: absolute;
+    pointer-events: none;
     color: rgb(175, 175, 175);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to