Title: [124703] trunk/Source/WebCore
- Revision
- 124703
- Author
- [email protected]
- Date
- 2012-08-04 15:08:58 -0700 (Sat, 04 Aug 2012)
Log Message
Web Inspector: filteredItemSelectionDialog.css has wrong selector for highlights
https://bugs.webkit.org/show_bug.cgi?id=93168
Patch by John J. Barton <[email protected]> on 2012-08-04
Reviewed by Pavel Feldman.
Selector required span to be a child, but highlights are themselves span. Used descendent selector.
No new tests: I'll make one next week, to go with bug 93166
* inspector/front-end/filteredItemSelectionDialog.css:
(.js-outline-dialog > .container > div.item span.highlight):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (124702 => 124703)
--- trunk/Source/WebCore/ChangeLog 2012-08-04 21:12:36 UTC (rev 124702)
+++ trunk/Source/WebCore/ChangeLog 2012-08-04 22:08:58 UTC (rev 124703)
@@ -1,3 +1,16 @@
+2012-08-04 John J. Barton <[email protected]>
+
+ Web Inspector: filteredItemSelectionDialog.css has wrong selector for highlights
+ https://bugs.webkit.org/show_bug.cgi?id=93168
+
+ Reviewed by Pavel Feldman.
+
+ Selector required span to be a child, but highlights are themselves span. Used descendent selector.
+ No new tests: I'll make one next week, to go with bug 93166
+
+ * inspector/front-end/filteredItemSelectionDialog.css:
+ (.js-outline-dialog > .container > div.item span.highlight):
+
2012-08-03 Robert Hogan <[email protected]>
CSS 2.1 failure: overflow-applies-to-001 fails
Modified: trunk/Source/WebCore/inspector/front-end/filteredItemSelectionDialog.css (124702 => 124703)
--- trunk/Source/WebCore/inspector/front-end/filteredItemSelectionDialog.css 2012-08-04 21:12:36 UTC (rev 124702)
+++ trunk/Source/WebCore/inspector/front-end/filteredItemSelectionDialog.css 2012-08-04 22:08:58 UTC (rev 124703)
@@ -35,7 +35,7 @@
background-color: rgb(224, 224, 224);
}
-.js-outline-dialog > .container > div.item > span.highlight {
+.js-outline-dialog > .container > div.item span.highlight {
color: black;
font-weight: bold;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes