Changeset 122437 in webkit


Ignore:
Timestamp:
Jul 12, 2012 3:04:31 AM (12 years ago)
Author:
caseq@chromium.org
Message:

Layout Test inspector/timeline/timeline-dom-content-loaded-event.html is failing
https://bugs.webkit.org/show_bug.cgi?id=90984

Reviewed by Vsevolod Vlasov.

  • remove test flakiness by only outputting result when page completed reload;
  • inspector/timeline/timeline-dom-content-loaded-event-expected.txt:
  • inspector/timeline/timeline-dom-content-loaded-event.html:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r122436 r122437  
     12012-07-11  Andrey Kosyakov  <caseq@chromium.org>
     2
     3        Layout Test inspector/timeline/timeline-dom-content-loaded-event.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=90984
     5
     6        Reviewed by Vsevolod Vlasov.
     7
     8        - remove test flakiness by only outputting result when page completed reload;
     9
     10        * inspector/timeline/timeline-dom-content-loaded-event-expected.txt:
     11        * inspector/timeline/timeline-dom-content-loaded-event.html:
     12
    1132012-07-12  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/LayoutTests/inspector/timeline/timeline-dom-content-loaded-event-expected.txt

    r119826 r122437  
    11Tests the DOM content loaded event.
    22
     3Page reloaded.
    34MarkDOMContent Properties:
    45{
     
    1213    counters : <object>
    1314}
    14 Page reloaded.
    1515
  • trunk/LayoutTests/inspector/timeline/timeline-dom-content-loaded-event.html

    r95415 r122437  
    1515    function contentEvent()
    1616    {
    17         InspectorTest.printTimelineRecords("MarkDOMContent");
    1817        InspectorTest.stopTimeline(finish);
    1918    }
     
    2120    function finish()
    2221    {
    23         if (++finishCalled === 2)
    24             InspectorTest.completeTest();
     22        if (++finishCalled < 2)
     23            return;
     24        InspectorTest.printTimelineRecords("MarkDOMContent");
     25        InspectorTest.completeTest();
    2526    }
    2627}
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r122419 r122437  
    37453745BUGWK90980 WIN : fast/forms/textarea/textarea-state-restore.html = PASS TIMEOUT
    37463746
    3747 // Started failing after r122312
    3748 BUGWK91041 LINUX WIN : inspector/timeline/timeline-dom-content-loaded-event.html = TEXT
    3749 BUGWK91041 MAC : inspector/timeline/timeline-dom-content-loaded-event.html = TIMEOUT
    3750 
    37513747// Started crashing after r122359
    37523748BUGWK91047 DEBUG : html5lib/runner.html = CRASH
Note: See TracChangeset for help on using the changeset viewer.