⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 92109 in webkit


Ignore:
Timestamp:
Aug 1, 2011, 1:57:05 AM (15 years ago)
Author:
pfeldman@chromium.org
Message:

2011-08-01 Pavel Feldman <pfeldman@google.com>

Not reviewed: unflake inspector test that was just added.

  • inspector/debugger/scripts-sorting-expected.txt:
  • inspector/debugger/scripts-sorting.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r92107 r92109  
     12011-08-01  Pavel Feldman  <pfeldman@google.com>
     2
     3        Not reviewed: unflake inspector test that was just added.
     4
     5        * inspector/debugger/scripts-sorting-expected.txt:
     6        * inspector/debugger/scripts-sorting.html:
     7
    182011-08-01  Tony Gentilcore  <tonyg@chromium.org>
    29
  • trunk/LayoutTests/inspector/debugger/scripts-sorting-expected.txt

    r92105 r92109  
    1515    jquery-1.5.1.min.js
    1616    jquery.cookie.js
    17 …cal/google/code/chromium/src/third_party/WebKit/LayoutTests/http/tests/inspector
     17LayoutTests/http/tests/inspector
    1818    debugger-test.js
    1919    inspector-test.js
    20 …local/google/code/chromium/src/third_party/WebKit/LayoutTests/inspector/debugger
     20LayoutTests/inspector/debugger
    2121    scripts-sorting.html
    2222Debugger was disabled.
  • trunk/LayoutTests/inspector/debugger/scripts-sorting.html

    r92105 r92109  
    3232    {
    3333        var select = WebInspector.panels.scripts._filesSelectElement;
    34         for (var i = 0; i < select.length; ++i)
    35             InspectorTest.addResult(select[i].textContent.replace(/\u00a0/g, " "));
     34        for (var i = 0; i < select.length; ++i) {
     35            var text = select[i].textContent.replace(/\u00a0/g, " ");
     36            if (text.indexOf("LayoutTests/") !== -1)
     37                text = text.substring(text.indexOf("LayoutTests/"));
     38            InspectorTest.addResult(text);
     39        }
    3640        InspectorTest.completeDebuggerTest();
    3741    }
Note: See TracChangeset for help on using the changeset viewer.