| 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 { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 "code/proj2/.git/HEAD": { content: "ref: refs/heads/master", time: new D
ate("May 25, 2009")}, | 43 "code/proj2/.git/HEAD": { content: "ref: refs/heads/master", time: new D
ate("May 25, 2009")}, |
| 44 "code/proj2/reset.css": reset_css, | 44 "code/proj2/reset.css": reset_css, |
| 45 "code/proj2/jquery.js": jquery_js, | 45 "code/proj2/jquery.js": jquery_js, |
| 46 "code/proj2/logo.png": logo2, | 46 "code/proj2/logo.png": logo2, |
| 47 }); | 47 }); |
| 48 fs.reportCreated(onFileSystemCreated); | 48 fs.reportCreated(onFileSystemCreated); |
| 49 | 49 |
| 50 function onFileSystemCreated() | 50 function onFileSystemCreated() |
| 51 { | 51 { |
| 52 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest.
bind(InspectorTest)); | 52 automappingTest.waitUntilMappingIsStabilized().then(InspectorTest.comple
teTest.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 |