https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e5478286b1bd4e84889619e4c75f017f6021a2d9 authored by Darren Shen on 12 April 2018, 11:59:24 UTC
[css-typed-om] Support offset-rotate.
Tip revision: e547828
worker-with-performance-observer.html
<!doctype html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
async_test(function(t) {
  const worker = new Worker("resources/worker-with-performance-observer.js");
  worker.onmessage = function(event) {
    t.step(() => assert_equals(event.data, 'SUCCESS'));
    t.done();
  }
}, 'Worker: Test Performance Observer inside a worker.');
</script>
</body>
</html>
back to top