Title: [90999] trunk/Source/WebKit/chromium
- Revision
- 90999
- Author
- [email protected]
- Date
- 2011-07-14 07:39:56 -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): Now that Chromium side is updated we can remove the old parameter
handling code.
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (90998 => 90999)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 14:04:34 UTC (rev 90998)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 14:39:56 UTC (rev 90999)
@@ -6,6 +6,17 @@
Reviewed by Pavel Feldman.
* src/js/DevTools.js:
+ (devtools.domContentLoaded): Now that Chromium side is updated we can remove the old parameter
+ handling code.
+
+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]>
Modified: trunk/Source/WebKit/chromium/src/js/DevTools.js (90998 => 90999)
--- trunk/Source/WebKit/chromium/src/js/DevTools.js 2011-07-14 14:04:34 UTC (rev 90998)
+++ trunk/Source/WebKit/chromium/src/js/DevTools.js 2011-07-14 14:39:56 UTC (rev 90999)
@@ -64,8 +64,6 @@
devtools.domContentLoaded = function()
{
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);
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes