Changeset 164967 in webkit


Ignore:
Timestamp:
Mar 2, 2014 8:49:38 PM (10 years ago)
Author:
timothy@apple.com
Message:

Remove ASSERT in ~IDBRequest since it is firing during legitimate uses in Web Inspector.

Adding the ASSERT back is tracked by https://webkit.org/b/129593.

https://bugs.webkit.org/show_bug.cgi?id=129328

Reviewed by Sam Weinig.

Source/WebCore:

  • Modules/indexeddb/IDBRequest.cpp:

(WebCore::IDBRequest::~IDBRequest):

LayoutTests:

  • TestExpectations: Remove skipped tests.
  • inspector-protocol/model/probe-manager-add-remove-actions-expected.txt: Rebaselined.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r164966 r164967  
     12014-03-02  Timothy Hatcher  <timothy@apple.com>
     2
     3        Remove ASSERT in ~IDBRequest since it is firing during legitimate uses in Web Inspector.
     4
     5        Adding the ASSERT back is tracked by https://webkit.org/b/129593.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=129328
     8
     9        Reviewed by Sam Weinig.
     10
     11        * TestExpectations: Remove skipped tests.
     12        * inspector-protocol/model/probe-manager-add-remove-actions-expected.txt: Rebaselined.
     13
    1142014-03-02  Brian Burg  <bburg@apple.com>
    215
  • trunk/LayoutTests/TestExpectations

    r164926 r164967  
    9696webkit.org/b/129327 inspector-protocol/indexeddb/basics.html [ Pass Failure ]
    9797
    98 # These assert in IndexedDB code very freqyently.
    99 webkit.org/b/129328 inspector-protocol/model [ Skip ]
    100 
    10198# Apparent fallout from http://trac.webkit.org/changeset/164830
    10299webkit.org/b/129462 [ Release ] inspector-protocol/dom/dom-search-crash.html [ Skip ]
  • trunk/LayoutTests/inspector-protocol/model/probe-manager-add-remove-actions-expected.txt

    r163477 r164967  
    99Probe set's probe count: 2
    1010Breakpoint actions changed. New count: 2
     11Breakpoint resolved state changed: true
     12Breakpoint resolved state changed: true
     13Breakpoint resolved state changed: false
    1114Breakpoint was added.
    1215PASS: Breakpoint should be resolved.
  • trunk/Source/WebCore/ChangeLog

    r164965 r164967  
     12014-03-02  Timothy Hatcher  <timothy@apple.com>
     2
     3        Remove ASSERT in ~IDBRequest since it is firing during legitimate uses in Web Inspector.
     4
     5        Adding the ASSERT back is tracked by https://webkit.org/b/129593.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=129328
     8
     9        Reviewed by Sam Weinig.
     10
     11        * Modules/indexeddb/IDBRequest.cpp:
     12        (WebCore::IDBRequest::~IDBRequest):
     13
    1142014-03-02  Commit Queue  <commit-queue@webkit.org>
    215
  • trunk/Source/WebCore/Modules/indexeddb/IDBRequest.cpp

    r163849 r164967  
    9191IDBRequest::~IDBRequest()
    9292{
    93     ASSERT(m_readyState == DONE || m_readyState == EarlyDeath || !scriptExecutionContext());
    9493}
    9594
Note: See TracChangeset for help on using the changeset viewer.