Title: [172350] trunk/Source/WebInspectorUI
Revision
172350
Author
[email protected]
Date
2014-08-08 12:33:46 -0700 (Fri, 08 Aug 2014)

Log Message

Web Inspector: Uncaught Exception opening Web Inspector - TypeError: undefined is not a function - candidateObjectCookie.every
https://bugs.webkit.org/show_bug.cgi?id=135762

Patch by Joseph Pecoraro <[email protected]> on 2014-08-08
Reviewed by Timothy Hatcher.

* UserInterface/Views/NavigationSidebarPanel.js:
(WebInspector.NavigationSidebarPanel.prototype.treeElementMatchesCookie):
Fix a typo, the wrong object was being used.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172349 => 172350)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-08 19:20:19 UTC (rev 172349)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-08 19:33:46 UTC (rev 172350)
@@ -1,3 +1,14 @@
+2014-08-08  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Uncaught Exception opening Web Inspector - TypeError: undefined is not a function - candidateObjectCookie.every
+        https://bugs.webkit.org/show_bug.cgi?id=135762
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/NavigationSidebarPanel.js:
+        (WebInspector.NavigationSidebarPanel.prototype.treeElementMatchesCookie):
+        Fix a typo, the wrong object was being used.
+
 2014-08-07  Brian J. Burg  <[email protected]>
 
         REGRESSION(r172094): timeline views are blank after reloading in some situations

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js (172349 => 172350)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js	2014-08-08 19:20:19 UTC (rev 172349)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js	2014-08-08 19:33:46 UTC (rev 172350)
@@ -699,7 +699,7 @@
                 representedObject.saveIdentityToCookie(candidateObjectCookie);
 
             var candidateCookieKeys = Object.keys(candidateObjectCookie);
-            return candidateCookieKeys.length && candidateObjectCookie.every(function valuesMatchForKey(key) {
+            return candidateCookieKeys.length && candidateCookieKeys.every(function valuesMatchForKey(key) {
                 return candidateObjectCookie[key] === cookie[key];
             });
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to