Title: [133311] trunk/Source/WebCore
Revision
133311
Author
mk...@chromium.org
Date
2012-11-02 10:10:51 -0700 (Fri, 02 Nov 2012)

Log Message

Web Inspector: Repeated errors are rendered incorrectly: link is not floating to the right.
https://bugs.webkit.org/show_bug.cgi?id=101032

Reviewed by Yury Semikhatsky.

https://bugs.webkit.org/show_bug.cgi?id=100525 incorrectly added
'-webkit-flex: 1' only to the list generated for errors in the console.
It should have been added to normal warning text as well. This patch
fixes the problem.

* inspector/front-end/inspector.css:
(.repeated-message .outline-disclosure, .repeated-message > .console-message-text):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (133310 => 133311)


--- trunk/Source/WebCore/ChangeLog	2012-11-02 17:07:21 UTC (rev 133310)
+++ trunk/Source/WebCore/ChangeLog	2012-11-02 17:10:51 UTC (rev 133311)
@@ -1,3 +1,18 @@
+2012-11-02  Mike West  <mk...@chromium.org>
+
+        Web Inspector: Repeated errors are rendered incorrectly: link is not floating to the right.
+        https://bugs.webkit.org/show_bug.cgi?id=101032
+
+        Reviewed by Yury Semikhatsky.
+
+        https://bugs.webkit.org/show_bug.cgi?id=100525 incorrectly added
+        '-webkit-flex: 1' only to the list generated for errors in the console.
+        It should have been added to normal warning text as well. This patch
+        fixes the problem.
+
+        * inspector/front-end/inspector.css:
+        (.repeated-message .outline-disclosure, .repeated-message > .console-message-text):
+
 2012-11-02  Eugene Klyuchnikov  <eustas....@gmail.com>
 
         Web Inspector: Timeline: show popup for CPU bars.

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (133310 => 133311)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2012-11-02 17:07:21 UTC (rev 133310)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2012-11-02 17:10:51 UTC (rev 133311)
@@ -964,7 +964,7 @@
     visibility: hidden;
 }
 
-.repeated-message .outline-disclosure {
+.repeated-message .outline-disclosure, .repeated-message > .console-message-text {
     -webkit-flex: 1;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to