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 26 matching lines...) Expand all Loading... |
37 | 37 |
38 // Make sure cache busting does not prevent mapping. | 38 // Make sure cache busting does not prevent mapping. |
39 "http://example.com/bar.css?12341234": bar_css, | 39 "http://example.com/bar.css?12341234": bar_css, |
40 | 40 |
41 // Make sure files with different timestamps DO NOT map. | 41 // Make sure files with different timestamps DO NOT map. |
42 "http://example.com/baz.js": { | 42 "http://example.com/baz.js": { |
43 content: bazContent, | 43 content: bazContent, |
44 time: new Date("December 3, 1989") | 44 time: new Date("December 3, 1989") |
45 }, | 45 }, |
46 | 46 |
47 // Make sure files with different content lenghts DO NOT map. | 47 // Make sure files with different content lengths DO NOT map. |
48 "http://example.com/images/image.png": { | 48 "http://example.com/images/image.png": { |
49 content: "012345", | 49 content: "012345", |
50 time: timestamp | 50 time: timestamp |
51 }, | 51 }, |
52 | 52 |
53 // Make sure assets are mapped based on path. | 53 // Make sure assets are mapped based on path. |
54 "http://example.com/elements/module.json": elements_module_json, | 54 "http://example.com/elements/module.json": elements_module_json, |
55 "http://example.com/sources/module.json": sources_module_json, | 55 "http://example.com/sources/module.json": sources_module_json, |
56 }); | 56 }); |
57 | 57 |
(...skipping 19 matching lines...) Expand all Loading... |
77 { | 77 { |
78 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest.
bind(InspectorTest)); | 78 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest.
bind(InspectorTest)); |
79 } | 79 } |
80 } | 80 } |
81 </script> | 81 </script> |
82 </head> | 82 </head> |
83 <body onload="runTest()"> | 83 <body onload="runTest()"> |
84 <p>Verify that automapping is sane.</p> | 84 <p>Verify that automapping is sane.</p> |
85 </body> | 85 </body> |
86 </html> | 86 </html> |
OLD | NEW |