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 // Always use indentation in scripts drop box |
| 10 WebInspector._isMac = false; |
| 11 |
9 function createDebuggerPresentationModelMock() | 12 function createDebuggerPresentationModelMock() |
10 { | 13 { |
11 var model = new WebInspector.Object(); | 14 var model = new WebInspector.Object(); |
12 model.breakpointsForUISourceCode = function() { return []; }; | 15 model.breakpointsForUISourceCode = function() { return []; }; |
13 model.messagesForUISourceCode = function() { return []; }; | 16 model.messagesForUISourceCode = function() { return []; }; |
14 return model; | 17 return model; |
15 } | 18 } |
16 function addUISouceCode(model, url) | 19 function addUISouceCode(model, url) |
17 { | 20 { |
18 var uiSourceCode = { | 21 var uiSourceCode = { |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 174 |
172 </script> | 175 </script> |
173 | 176 |
174 </head> | 177 </head> |
175 | 178 |
176 <body onload="runTest()"> | 179 <body onload="runTest()"> |
177 <p>Tests that scripts panel UI elements work as intended.</p> | 180 <p>Tests that scripts panel UI elements work as intended.</p> |
178 | 181 |
179 </body> | 182 </body> |
180 </html> | 183 </html> |
OLD | NEW |