| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |