Changeset 92109 in webkit
- Timestamp:
- Aug 1, 2011, 1:57:05 AM (15 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
inspector/debugger/scripts-sorting-expected.txt (modified) (1 diff)
-
inspector/debugger/scripts-sorting.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r92107 r92109 1 2011-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 1 8 2011-08-01 Tony Gentilcore <tonyg@chromium.org> 2 9 -
trunk/LayoutTests/inspector/debugger/scripts-sorting-expected.txt
r92105 r92109 15 15 jquery-1.5.1.min.js 16 16 jquery.cookie.js 17 …cal/google/code/chromium/src/third_party/WebKit/LayoutTests/http/tests/inspector17 LayoutTests/http/tests/inspector 18 18 debugger-test.js 19 19 inspector-test.js 20 …local/google/code/chromium/src/third_party/WebKit/LayoutTests/inspector/debugger20 LayoutTests/inspector/debugger 21 21 scripts-sorting.html 22 22 Debugger was disabled. -
trunk/LayoutTests/inspector/debugger/scripts-sorting.html
r92105 r92109 32 32 { 33 33 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 } 36 40 InspectorTest.completeDebuggerTest(); 37 41 }
Note:
See TracChangeset
for help on using the changeset viewer.