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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-sync-content-nodejs.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 test() 9 function test()
11 { 10 {
12 // Pretend we are running under V8 front-end. 11 // Pretend we are running under V8 front-end.
13 SDK.targetManager.mainTarget().setIsNodeJSForTest(); 12 SDK.targetManager.mainTarget().setIsNodeJSForTest();
14 13
15 var content = [ 14 var content = [
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 { 88 {
90 return content.split("\n").map(line => " " + line).join("\n"); 89 return content.split("\n").map(line => " " + line).join("\n");
91 } 90 }
92 }; 91 };
93 </script> 92 </script>
94 </head> 93 </head>
95 <body onload="runTest()"> 94 <body onload="runTest()">
96 <p>Verify that syncing Node.js contents works fine.</p> 95 <p>Verify that syncing Node.js contents works fine.</p>
97 </body> 96 </body>
98 </html> 97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698