Title: [90990] trunk/Source/WebKit/chromium
- Revision
- 90990
- Author
- [email protected]
- Date
- 2011-07-14 03:06:43 -0700 (Thu, 14 Jul 2011)
Log Message
[Chromium] Web Inspector: URL parameters should consistently use camel case names
https://bugs.webkit.org/show_bug.cgi?id=64520
Reviewed by Pavel Feldman.
* src/js/DevTools.js:
(devtools.domContentLoaded):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (90989 => 90990)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 09:47:15 UTC (rev 90989)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 10:06:43 UTC (rev 90990)
@@ -1,3 +1,13 @@
+2011-07-14 Yury Semikhatsky <[email protected]>
+
+ [Chromium] Web Inspector: URL parameters should consistently use camel case names
+ https://bugs.webkit.org/show_bug.cgi?id=64520
+
+ Reviewed by Pavel Feldman.
+
+ * src/js/DevTools.js:
+ (devtools.domContentLoaded):
+
2011-07-13 Noel Gordon <[email protected]>
[chromium] Clean undeeded WebCore:: namespace prefixing from WebBindings.
Modified: trunk/Source/WebKit/chromium/src/js/DevTools.js (90989 => 90990)
--- trunk/Source/WebKit/chromium/src/js/DevTools.js 2011-07-14 09:47:15 UTC (rev 90989)
+++ trunk/Source/WebKit/chromium/src/js/DevTools.js 2011-07-14 10:06:43 UTC (rev 90990)
@@ -66,6 +66,8 @@
WebInspector.setAttachedWindow(WebInspector.queryParamsObject.docked === "true");
if (WebInspector.queryParamsObject.toolbar_color && WebInspector.queryParamsObject.text_color)
WebInspector.setToolbarColors(WebInspector.queryParamsObject.toolbar_color, WebInspector.queryParamsObject.text_color);
+ if (WebInspector.queryParamsObject.toolbarColor && WebInspector.queryParamsObject.textColor)
+ WebInspector.setToolbarColors(WebInspector.queryParamsObject.toolbarColor, WebInspector.queryParamsObject.textColor);
}
document.addEventListener("DOMContentLoaded", devtools.domContentLoaded, false);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes