Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: LayoutTests/inspector/debugger/scripts-panel.html

Issue 8222004: Merge 96319 - Web Inspector: Scripts panel without folders causes errors when creating content sc... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/scripts-panel-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/scripts-panel-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698