Title: [149792] trunk/Source/WebCore
Revision
149792
Author
[email protected]
Date
2013-05-08 23:31:44 -0700 (Wed, 08 May 2013)

Log Message

Web Inspector: Fix a typo in Settings.js
https://bugs.webkit.org/show_bug.cgi?id=115849

Patch by Seokju Kwon <[email protected]> on 2013-05-08
Reviewed by Joseph Pecoraro.

No new tests, no behavior change.

* inspector/front-end/Settings.js:
(WebInspector.Settings):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149791 => 149792)


--- trunk/Source/WebCore/ChangeLog	2013-05-09 05:26:17 UTC (rev 149791)
+++ trunk/Source/WebCore/ChangeLog	2013-05-09 06:31:44 UTC (rev 149792)
@@ -1,3 +1,15 @@
+2013-05-08  Seokju Kwon  <[email protected]>
+
+        Web Inspector: Fix a typo in Settings.js
+        https://bugs.webkit.org/show_bug.cgi?id=115849
+
+        Reviewed by Joseph Pecoraro.
+
+        No new tests, no behavior change.
+
+        * inspector/front-end/Settings.js:
+        (WebInspector.Settings):
+
 2013-05-08  Ryosuke Niwa  <[email protected]>
 
         SecurityOrigin doesn’t need to forward declare or include Document

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


--- trunk/Source/WebCore/inspector/front-end/Settings.js	2013-05-09 05:26:17 UTC (rev 149791)
+++ trunk/Source/WebCore/inspector/front-end/Settings.js	2013-05-09 06:31:44 UTC (rev 149792)
@@ -111,7 +111,7 @@
     this._javascript_Disabled = this.createSetting("_javascript_Disabled", false);
     this.geolocationOverride = this.createSetting("geolocationOverride", "");
     this.deviceOrientationOverride = this.createSetting("deviceOrientationOverride", "");
-    this.showHeapSnapshotObjectsHiddenProperties = this.createSetting("showHeaSnapshotObjectsHiddenProperties", false);
+    this.showHeapSnapshotObjectsHiddenProperties = this.createSetting("showHeapSnapshotObjectsHiddenProperties", false);
     this.showNativeSnapshotUninstrumentedSize = this.createSetting("showNativeSnapshotUninstrumentedSize", false);
     this.searchInContentScripts = this.createSetting("searchInContentScripts", false);
     this.textEditorIndent = this.createSetting("textEditorIndent", "    ");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to