Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/performance-timeline/worker-with-performance-observer.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/performance-timeline/worker-with-performance-observer.html b/third_party/WebKit/LayoutTests/external/wpt/performance-timeline/worker-with-performance-observer.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..88e21606b9622f3f6ca27db6c2ef64d85ed5268f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/performance-timeline/worker-with-performance-observer.html |
| @@ -0,0 +1,18 @@ |
| +<!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('SUCCESS', event.data)); |
|
tdresser1
2017/07/07 15:04:54
assert_equals takes the expected result in the sec
npm
2017/07/07 15:42:52
Done.
|
| + t.done(); |
| + } |
| +}, 'Worker: Test Performance Observer inside a worker.'); |
| +</script> |
| +</body> |
| +</html> |