Changeset 56843 in webkit


Ignore:
Timestamp:
Mar 31, 2010 9:01:34 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-31 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Fix crash

Web Inspector: [Chromium] inspector/audits-panel-functional.html crashes test_shell
https://bugs.webkit.org/show_bug.cgi?id=36885

  • inspector/audits-panel-functional.html:
  • platform/chromium/test_expectations.txt:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56841 r56843  
     12010-03-31  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Fix crash
     6
     7        Web Inspector: [Chromium] inspector/audits-panel-functional.html crashes test_shell
     8        https://bugs.webkit.org/show_bug.cgi?id=36885
     9
     10        * inspector/audits-panel-functional.html:
     11        * platform/chromium/test_expectations.txt:
     12
    1132010-03-30  Yury Semikhatsky  <yurys@chromium.org>
    214
  • trunk/LayoutTests/inspector/audits-panel-functional.html

    r56779 r56843  
    2020    function callback(result)
    2121    {
     22        if (result === "refreshing")
     23            return;
    2224        var output = document.getElementById("outputPre");
    2325        output.textContent = result;
     
    3436    if (!WebInspector.panels.resources.resourceTrackingEnabled) {
    3537        InspectorBackend.enableResourceTracking(false);
    36         testController.notifyDone([]);
    37         return;
     38        return "refreshing";
    3839    }
    3940
     
    5859            var output = [];
    5960            frontend_collectTextContent(WebInspector.panels.audits.visibleView.element, 0, output);
    60             // Avoid influencing tests that required resource tracking to be disabled.
     61            // Avoid influencing tests that require resource tracking to be disabled.
    6162            InspectorBackend.disableResourceTracking(false);
    6263            testController.runAfterPendingDispatches(function() {
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r56832 r56843  
    28132813// This is a new test but fails in Chromium because of a missing API.
    28142814BUG39904 : svg/animations/animate-points.html = TEXT TIMEOUT
    2815 
    2816 // Caused by http://trac.webkit.org/changeset/56779
    2817 BUG39927 WIN : inspector/audits-panel-functional.html = CRASH PASS TEXT
Note: See TracChangeset for help on using the changeset viewer.