Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-git-folders.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../inspector-test.js"></script> 3 <script src="../inspector-test.js"></script>
4 <script src="../isolated-filesystem-test.js"></script> 4 <script src="../isolated-filesystem-test.js"></script>
5 <script src="./persistence-test.js"></script> 5 <script src="./persistence-test.js"></script>
6 <script src="./automapping-test.js"></script> 6 <script src="./automapping-test.js"></script>
7 <script> 7 <script>
8 8
9 function test() 9 function test()
10 { 10 {
11 var automappingTest = new InspectorTest.AutomappingTest(new WebInspector.Wor kspace()); 11 var automappingTest = new InspectorTest.AutomappingTest(new Workspace.Worksp ace());
12 12
13 var reset_css = { 13 var reset_css = {
14 content: "* { margin: 0 }", 14 content: "* { margin: 0 }",
15 time: new Date("April 29, 1959") 15 time: new Date("April 29, 1959")
16 }; 16 };
17 var jquery_js = { 17 var jquery_js = {
18 content: "window.superb = 1;", 18 content: "window.superb = 1;",
19 time: new Date("August 26, 2006") 19 time: new Date("August 26, 2006")
20 }; 20 };
21 var logo1 = { 21 var logo1 = {
(...skipping 29 matching lines...) Expand all
51 { 51 {
52 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest. bind(InspectorTest)); 52 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest. bind(InspectorTest));
53 } 53 }
54 } 54 }
55 </script> 55 </script>
56 </head> 56 </head>
57 <body onload="runTest()"> 57 <body onload="runTest()">
58 <p>Verify that automapping is able to map ambiguous resources based on the selec ted project folder.</p> 58 <p>Verify that automapping is able to map ambiguous resources based on the selec ted project folder.</p>
59 </body> 59 </body>
60 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698