Title: [126253] trunk/Source/WebCore
Revision
126253
Author
[email protected]
Date
2012-08-21 19:39:50 -0700 (Tue, 21 Aug 2012)

Log Message

Web Inspector: [regression] Settings panel fails to open.
https://bugs.webkit.org/show_bug.cgi?id=94647

Unreviewed: one line JS front-end fix.

* inspector/front-end/ScriptsSearchScope.js:
* inspector/front-end/Settings.js:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (126252 => 126253)


--- trunk/Source/WebCore/ChangeLog	2012-08-22 02:17:33 UTC (rev 126252)
+++ trunk/Source/WebCore/ChangeLog	2012-08-22 02:39:50 UTC (rev 126253)
@@ -1,3 +1,13 @@
+2012-08-21  Pavel Feldman  <[email protected]>
+
+        Web Inspector: [regression] Settings panel fails to open.
+        https://bugs.webkit.org/show_bug.cgi?id=94647
+
+        Unreviewed: one line JS front-end fix.
+
+        * inspector/front-end/ScriptsSearchScope.js:
+        * inspector/front-end/Settings.js:
+
 2012-08-21  Julien Chaffraix  <[email protected]>
 
         Crash in RenderTableSection::setCellLogicalWidths

Modified: trunk/Source/WebCore/inspector/front-end/ScriptsSearchScope.js (126252 => 126253)


--- trunk/Source/WebCore/inspector/front-end/ScriptsSearchScope.js	2012-08-22 02:17:33 UTC (rev 126252)
+++ trunk/Source/WebCore/inspector/front-end/ScriptsSearchScope.js	2012-08-22 02:39:50 UTC (rev 126253)
@@ -128,5 +128,3 @@
 }
 
 WebInspector.ScriptsSearchScope.prototype.__proto__ = WebInspector.SearchScope.prototype;
-
-WebInspector.settings.searchInContentScripts = WebInspector.settings.createSetting("searchInContentScripts", false);

Modified: trunk/Source/WebCore/inspector/front-end/Settings.js (126252 => 126253)


--- trunk/Source/WebCore/inspector/front-end/Settings.js	2012-08-22 02:17:33 UTC (rev 126252)
+++ trunk/Source/WebCore/inspector/front-end/Settings.js	2012-08-22 02:39:50 UTC (rev 126253)
@@ -101,6 +101,7 @@
     this.geolocationOverride = this.createSetting("geolocationOverride", "");
     this.deviceOrientationOverride = this.createSetting("deviceOrientationOverride", "");
     this.showHeapSnapshotObjectsHiddenProperties = this.createSetting("showHeaSnapshotObjectsHiddenProperties", false);
+    this.searchInContentScripts = this.createSetting("searchInContentScripts", false);
 
     // If there are too many breakpoints in a storage, it is likely due to a recent bug that caused
     // periodical breakpoints duplication leading to inspector slowness.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to