Changeset 65966 in webkit


Ignore:
Timestamp:
Aug 24, 2010 7:59:44 PM (14 years ago)
Author:
tkent@chromium.org
Message:

2010-08-24 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Fix 28 inspector test crashes
https://bugs.webkit.org/show_bug.cgi?id=44574

  • platform/chromium/drt_expectations.txt:

2010-08-24 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Fix 28 inspector test crashes
https://bugs.webkit.org/show_bug.cgi?id=44574

Reset DevToolsClient and DevToolsAgent before closing a DevTools
WebView in order to avoid accessing to a deleted WebView instance.

  • DumpRenderTree/chromium/TestShell.cpp: (TestShell::closeDevTools):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r65961 r65966  
     12010-08-24  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [DRT/Chromium] Fix 28 inspector test crashes
     6        https://bugs.webkit.org/show_bug.cgi?id=44574
     7
     8        * platform/chromium/drt_expectations.txt:
     9
    1102010-08-24  Ojan Vafai  <ojan@chromium.org>
    211
  • trunk/LayoutTests/platform/chromium/drt_expectations.txt

    r65954 r65966  
    209209// Need to implement something?
    210210BUG_DRT WIN : http/tests/inspector-enabled/console-log-before-frame-navigation.html = CRASH
    211 BUG_DRT WIN : http/tests/inspector/change-iframe-src.html = CRASH
    212211BUG_DRT WIN : http/tests/inspector/console-resource-errors.html = CRASH
    213 BUG_DRT WIN : http/tests/inspector/console-xhr-logging.html = CRASH
    214212BUG_DRT WIN : http/tests/inspector/inspect-iframe-from-different-domain.html = CRASH
    215 BUG_DRT WIN : http/tests/inspector/resource-har-conversion.html = CRASH
    216213BUG_DRT WIN : http/tests/inspector/resource-parameters.html = CRASH
    217 BUG_DRT WIN : inspector/audits-panel-functional.html = CRASH
    218214BUG_DRT WIN : inspector/console-assert.html = CRASH
    219 BUG_DRT WIN : inspector/console-clear.html = CRASH
    220215BUG_DRT WIN : inspector/console-command-clear.html = CRASH
    221 BUG_DRT WIN : inspector/console-dir-global.html = CRASH
    222216BUG_DRT WIN : inspector/console-dir.html = CRASH
    223 BUG_DRT WIN : inspector/console-dirxml.html = CRASH
    224217BUG_DRT WIN : inspector/console-eval-global.html = CRASH
    225 BUG_DRT WIN : inspector/console-eval.html = CRASH
    226218BUG_DRT WIN : inspector/console-format-collections.html = CRASH
    227 BUG_DRT WIN : inspector/console-format.html = CRASH
    228219BUG_DRT WIN : inspector/console-log-before-inspector-open.html = CRASH
    229 BUG_DRT WIN : inspector/console-log-syntax-error.html = CRASH
    230220BUG_DRT WIN : inspector/console-tests.html = CRASH
    231 BUG_DRT WIN : inspector/console-trace.html = CRASH
    232221BUG_DRT WIN : inspector/cookie-resource-match.html = CRASH
    233 BUG_DRT WIN : inspector/debugger-breakpoints-not-activated-on-reload.html = CRASH
    234222BUG_DRT WIN : inspector/debugger-eval-while-paused.html = CRASH
    235223BUG_DRT WIN : inspector/debugger-no-nested-pause.html = CRASH
     
    241229BUG_DRT WIN : inspector/debugger-step-over.html = CRASH
    242230BUG_DRT WIN : inspector/dom-breakpoints.html = CRASH
    243 BUG_DRT WIN : inspector/elements-img-tooltip.html = CRASH
    244231BUG_DRT WIN : inspector/elements-panel-limited-children.html = CRASH
    245 BUG_DRT WIN : inspector/elements-panel-rewrite-href.html = CRASH
    246232BUG_DRT WIN : inspector/elements-panel-search.html = CRASH
    247 BUG_DRT WIN : inspector/elements-panel-selection-on-refresh.html = CRASH
    248233BUG_DRT WIN : inspector/elements-panel-structure.html = CRASH
    249 BUG_DRT WIN : inspector/elements-panel-styles.html = CRASH
    250234BUG_DRT WIN : inspector/elements-panel-xhtml-structure.xhtml = CRASH
    251 BUG_DRT WIN : inspector/evaluate-in-frontend.html = CRASH
    252235BUG_DRT WIN : inspector/inspected-objects-not-overriden.html = CRASH
    253 BUG_DRT WIN : inspector/styles-computed-trace.html = CRASH
    254236BUG_DRT WIN : inspector/styles-disable-inherited.html = CRASH
    255 BUG_DRT WIN : inspector/styles-disable-then-delete.html = CRASH
    256237BUG_DRT WIN : inspector/styles-disable-then-enable.html = CRASH
    257 BUG_DRT WIN : inspector/styles-iframe.html = CRASH
    258238BUG_DRT WIN : inspector/styles-source-lines-inline.html = CRASH
    259 BUG_DRT WIN : inspector/styles-source-lines.html = CRASH
    260239BUG_DRT WIN : inspector/styles-source-offsets.html = CRASH
    261 BUG_DRT WIN : inspector/syntax-highlight-css.html = CRASH
    262240BUG_DRT WIN : inspector/syntax-highlight-html.html = CRASH
    263 BUG_DRT WIN : inspector/syntax-highlight-javascript.html = CRASH
    264241BUG_DRT WIN : inspector/timeline-enum-stability.html = CRASH
    265 BUG_DRT WIN : inspector/timeline-event-dispatch.html = CRASH
    266242BUG_DRT WIN : inspector/timeline-layout.html = CRASH
    267 BUG_DRT WIN : inspector/timeline-mark-timeline.html = CRASH
    268243BUG_DRT WIN : inspector/timeline-network-resource.html = CRASH
    269 BUG_DRT WIN : inspector/timeline-paint.html = CRASH
    270244BUG_DRT WIN : inspector/timeline-parse-html.html = CRASH
    271 BUG_DRT WIN : inspector/timeline-recalculate-styles.html = CRASH
    272245BUG_DRT WIN : inspector/timeline-script-tag-1.html = CRASH
    273 BUG_DRT WIN : inspector/timeline-script-tag-2.html = CRASH
    274246BUG_DRT WIN : inspector/timeline-trivial.html = CRASH
    275247
  • trunk/WebKitTools/ChangeLog

    r65953 r65966  
     12010-08-24  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        [DRT/Chromium] Fix 28 inspector test crashes
     6        https://bugs.webkit.org/show_bug.cgi?id=44574
     7
     8        Reset DevToolsClient and DevToolsAgent before closing a DevTools
     9        WebView in order to avoid accessing to a deleted WebView instance.
     10
     11        * DumpRenderTree/chromium/TestShell.cpp:
     12        (TestShell::closeDevTools):
     13
    1142010-08-24  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/WebKitTools/DumpRenderTree/chromium/TestShell.cpp

    r65881 r65966  
    145145{
    146146    if (m_devTools) {
     147        m_drtDevToolsAgent->reset();
     148        if (m_drtDevToolsClient)
     149            m_drtDevToolsClient->reset();
     150        m_drtDevToolsAgent->setWebView(0);
    147151        closeWindow(m_devTools);
    148152        m_devTools = 0;
Note: See TracChangeset for help on using the changeset viewer.