| 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 | 4 |
| 5 <script> | 5 <script> |
| 6 | 6 |
| 7 function test() | 7 function test() |
| 8 { | 8 { |
| 9 var MockProject = function() {} | 9 var MockProject = function() {} |
| 10 MockProject.prototype.requestFileContent = function(uri, callback) | 10 MockProject.prototype.requestFileContent = function(uri, callback) |
| 11 { | 11 { |
| 12 InspectorTest.addResult("Content is requested from SourceCodeProvider.")
; | 12 InspectorTest.addResult("Content is requested from SourceCodeProvider.")
; |
| 13 setTimeout(callback.bind(null, "var x = 0;"), 0); | 13 setTimeout(callback.bind(null, "var x = 0;"), 0); |
| 14 } | 14 } |
| 15 MockProject.prototype.isServiceProject = function() { return false; }; | 15 MockProject.prototype.isServiceProject = function() { return false; }; |
| 16 MockProject.prototype.type = function() { return WebInspector.projectTypes.D
ebugger; } | 16 MockProject.prototype.type = function() { return WebInspector.projectTypes.D
ebugger; } |
| 17 | 17 |
| 18 InspectorTest.runTestSuite([ | 18 InspectorTest.runTestSuite([ |
| 19 function testUISourceCode(next) | 19 function testUISourceCode(next) |
| 20 { | 20 { |
| 21 var uiSourceCode = new WebInspector.UISourceCode(new MockProject(),
"parentPath", "name", "originURL", "url", WebInspector.resourceTypes.Script); | 21 var uiSourceCode = new WebInspector.UISourceCode(new MockProject(),
"parentPath", "name", "originURL", WebInspector.resourceTypes.Script); |
| 22 function didRequestContent(callNumber, content) | 22 function didRequestContent(callNumber, content) |
| 23 { | 23 { |
| 24 InspectorTest.addResult("Callback " + callNumber + " is invoked.
"); | 24 InspectorTest.addResult("Callback " + callNumber + " is invoked.
"); |
| 25 InspectorTest.assertEquals("text/javascript", WebInspector.Sourc
esView.uiSourceCodeHighlighterType(uiSourceCode)); | 25 InspectorTest.assertEquals("text/javascript", WebInspector.Sourc
esView.uiSourceCodeHighlighterType(uiSourceCode)); |
| 26 InspectorTest.assertEquals("var x = 0;", content); | 26 InspectorTest.assertEquals("var x = 0;", content); |
| 27 | 27 |
| 28 if (callNumber === 3) { | 28 if (callNumber === 3) { |
| 29 // Check that sourceCodeProvider.requestContent won't be cal
led anymore. | 29 // Check that sourceCodeProvider.requestContent won't be cal
led anymore. |
| 30 uiSourceCode.requestContent(function(content) | 30 uiSourceCode.requestContent(function(content) |
| 31 { | 31 { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 </script> | 46 </script> |
| 47 | 47 |
| 48 </head> | 48 </head> |
| 49 | 49 |
| 50 <body onload="runTest()"> | 50 <body onload="runTest()"> |
| 51 <p>Tests UISourceCode class.</p> | 51 <p>Tests UISourceCode class.</p> |
| 52 </body> | 52 </body> |
| 53 </html> | 53 </html> |
| OLD | NEW |