Title: [114103] trunk/Source/WebCore
Revision
114103
Author
[email protected]
Date
2012-04-13 03:10:41 -0700 (Fri, 13 Apr 2012)

Log Message

Web Inspector: Line number is not displayed while debugging _javascript_
https://bugs.webkit.org/show_bug.cgi?id=83786

Patch by Vivek Galatage <[email protected]> on 2012-04-13
Reviewed by Pavel Feldman.

Changed the textViewer.css to start displaying the line number with
appropriate color property. Added outline property for enhanced view

No additional test cases required for the above fix.

* inspector/front-end/Images/breakpointConditionalCounterBorder.png:
* inspector/front-end/Images/breakpointCounterBorder.png:
* inspector/front-end/Images/programCounterBorder.png:
* inspector/front-end/textViewer.css:
(.webkit-execution-line .webkit-line-number-outer):
(.webkit-breakpoint.webkit-execution-line .webkit-line-number-outer):
(.webkit-breakpoint-conditional.webkit-execution-line .webkit-line-number-outer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (114102 => 114103)


--- trunk/Source/WebCore/ChangeLog	2012-04-13 09:37:09 UTC (rev 114102)
+++ trunk/Source/WebCore/ChangeLog	2012-04-13 10:10:41 UTC (rev 114103)
@@ -1,3 +1,23 @@
+2012-04-13  Vivek Galatage  <[email protected]>
+
+        Web Inspector: Line number is not displayed while debugging _javascript_
+        https://bugs.webkit.org/show_bug.cgi?id=83786
+
+        Reviewed by Pavel Feldman.
+
+        Changed the textViewer.css to start displaying the line number with
+        appropriate color property. Added outline property for enhanced view
+
+        No additional test cases required for the above fix.
+
+        * inspector/front-end/Images/breakpointConditionalCounterBorder.png:
+        * inspector/front-end/Images/breakpointCounterBorder.png:
+        * inspector/front-end/Images/programCounterBorder.png:
+        * inspector/front-end/textViewer.css:
+        (.webkit-execution-line .webkit-line-number-outer):
+        (.webkit-breakpoint.webkit-execution-line .webkit-line-number-outer):
+        (.webkit-breakpoint-conditional.webkit-execution-line .webkit-line-number-outer):
+
 2012-04-13  Kent Tamura  <[email protected]>
 
         Add a runtime flag for <input type=date>

Modified: trunk/Source/WebCore/inspector/front-end/Images/breakpointConditionalCounterBorder.png


(Binary files differ)

Modified: trunk/Source/WebCore/inspector/front-end/Images/breakpointCounterBorder.png


(Binary files differ)

Modified: trunk/Source/WebCore/inspector/front-end/Images/programCounterBorder.png


(Binary files differ)

Modified: trunk/Source/WebCore/inspector/front-end/textViewer.css (114102 => 114103)


--- trunk/Source/WebCore/inspector/front-end/textViewer.css	2012-04-13 09:37:09 UTC (rev 114102)
+++ trunk/Source/WebCore/inspector/front-end/textViewer.css	2012-04-13 10:10:41 UTC (rev 114103)
@@ -138,7 +138,9 @@
 }
 
 .webkit-execution-line .webkit-line-number-outer {
-    color: transparent;
+    color: rgb(142, 5, 4);
+    font-weight: bold;
+    outline: 1px solid rgb(64, 115, 244);
     border-width: 0 14px 0px 2px;
     -webkit-border-image: url(Images/programCounterBorder.png) 0 14 0 2;
 }
@@ -149,12 +151,16 @@
 }
 
 .webkit-breakpoint.webkit-execution-line .webkit-line-number-outer {
-    color: transparent;
+    color: white;
+    font-weight: bold;
+    outline: 1px solid rgb(64, 115, 244);
     -webkit-border-image: url(Images/breakpointCounterBorder.png) 0 14 0 2;
 }
 
 .webkit-breakpoint-conditional.webkit-execution-line .webkit-line-number-outer {
-    color: transparent;
+    color: white;
+    font-weight: bold;
+    outline: 1px solid rgb(64, 115, 244);
     -webkit-border-image: url(Images/breakpointConditionalCounterBorder.png) 0 14 0 2;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to