| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |