integration_test_runner.html 833 B

12345678910111213141516171819
  1. <!--
  2. * Copyright 2017 The Chromium Authors. All rights reserved.
  3. * Use of this source code is governed by a BSD-style license that can be
  4. * found in the LICENSE file.
  5. -->
  6. <!doctype html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="utf-8">
  10. <meta http-equiv="Content-Security-Policy" content="object-src 'none'; script-src 'self' 'unsafe-eval' 'unsafe-inline' https://chrome-devtools-frontend.appspot.com">
  11. <script type="module" src="root.js"></script>
  12. <script defer src="shell.js"></script>
  13. <script defer src="devtools_app.js"></script>
  14. <script defer src="integration_test_runner.js"></script>
  15. <script type="module">if(self.testRunner){testRunner.dumpAsText();testRunner.waitUntilDone();}
  16. Root.Runtime.startApplication('integration_test_runner');</script>
  17. </head>
  18. <body id="-blink-dev-tools"></body>
  19. </html>