| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 function test() | 5 function test() |
| 6 { | 6 { |
| 7 | 7 |
| 8 function createContentProvider(url) | 8 function createContentProvider(url) |
| 9 { | 9 { |
| 10 var contentProvider = new WebInspector.StaticContentProvider(WebInspecto
r.resourceTypes.Script, ""); | 10 var contentProvider = new WebInspector.StaticContentProvider(WebInspecto
r.resourceTypes.Script, ""); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 dumpUISourceCodeDisplayName(baseURL + "long-filename?parameter=value&nnn=1")
; | 37 dumpUISourceCodeDisplayName(baseURL + "long-filename?parameter=value&nnn=1")
; |
| 38 dumpUISourceCodeDisplayName(baseURL + "too-long-filename-1234567890?paramete
r=value&nnn=1"); | 38 dumpUISourceCodeDisplayName(baseURL + "too-long-filename-1234567890?paramete
r=value&nnn=1"); |
| 39 InspectorTest.completeTest(); | 39 InspectorTest.completeTest(); |
| 40 }; | 40 }; |
| 41 </script> | 41 </script> |
| 42 </head> | 42 </head> |
| 43 <body onload="runTest()"> | 43 <body onload="runTest()"> |
| 44 <p>Tests UISourceCode display name.</p> | 44 <p>Tests UISourceCode display name.</p> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| OLD | NEW |