Changeset 172350 in webkit


Ignore:
Timestamp:
Aug 8, 2014 12:33:46 PM (10 years ago)
Author:
commit-queue@webkit.org
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 <Joseph Pecoraro> 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.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r172337 r172350  
     12014-08-08  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Uncaught Exception opening Web Inspector - TypeError: undefined is not a function - candidateObjectCookie.every
     4        https://bugs.webkit.org/show_bug.cgi?id=135762
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/NavigationSidebarPanel.js:
     9        (WebInspector.NavigationSidebarPanel.prototype.treeElementMatchesCookie):
     10        Fix a typo, the wrong object was being used.
     11
    1122014-08-07  Brian J. Burg  <burg@cs.washington.edu>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js

    r172337 r172350  
    700700
    701701            var candidateCookieKeys = Object.keys(candidateObjectCookie);
    702             return candidateCookieKeys.length && candidateObjectCookie.every(function valuesMatchForKey(key) {
     702            return candidateCookieKeys.length && candidateCookieKeys.every(function valuesMatchForKey(key) {
    703703                return candidateObjectCookie[key] === cookie[key];
    704704            });
Note: See TracChangeset for help on using the changeset viewer.