test_worker_observer.html 458 B

12345678910111213141516171819
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta charset=utf-8>
  9. <title>Test for performance observer in worker</title>
  10. <script src="/resources/testharness.js"></script>
  11. <script src="/resources/testharnessreport.js"></script>
  12. </head>
  13. <body>
  14. <div id="log"></div>
  15. <script>
  16. fetch_tests_from_worker(new Worker("worker_performance_observer.js"));
  17. </script>
  18. </body>