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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-move-breakpoints-on-reload.html

Issue 2533073003: [DevTools] Remove workspace-test.js part1. (Closed)
Patch Set: Created 4 years 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
OLDNEW
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='../debugger-test.js'></script> 4 <script src='../debugger-test.js'></script>
5 <script src='../workspace-test.js'></script>
6 <script src='../isolated-filesystem-test.js'></script> 5 <script src='../isolated-filesystem-test.js'></script>
7 <script src='./persistence-test.js'></script> 6 <script src='./persistence-test.js'></script>
8 <script> 7 <script>
9 8
10 function addFooJS() { 9 function addFooJS() {
11 var script = document.createElement('script'); 10 var script = document.createElement('script');
12 script.src = './resources/foo.js'; 11 script.src = './resources/foo.js';
13 document.body.appendChild(script); 12 document.body.appendChild(script);
14 } 13 }
15 14
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 InspectorTest.addResult(" " + uiLocation.uiSourceCode.url() +":" + uiLocation.lineNumber); 64 InspectorTest.addResult(" " + uiLocation.uiSourceCode.url() +":" + uiLocation.lineNumber);
66 } 65 }
67 } 66 }
68 }; 67 };
69 </script> 68 </script>
70 </head> 69 </head>
71 <body onload='runTest()'> 70 <body onload='runTest()'>
72 <p>Verify that breakpoints are moved appropriately in case of page reload.</p> 71 <p>Verify that breakpoints are moved appropriately in case of page reload.</p>
73 </body> 72 </body>
74 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698