Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(402)

Unified Diff: third_party/WebKit/LayoutTests/fast/workers/worker-with-performance-observer.html

Issue 2953993003: Add LayoutTest for PerformanceObserver inside Worker (Closed)
Patch Set: DontExpose Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/workers/worker-with-performance-observer.html
diff --git a/third_party/WebKit/LayoutTests/fast/workers/worker-with-performance-observer.html b/third_party/WebKit/LayoutTests/fast/workers/worker-with-performance-observer.html
new file mode 100644
index 0000000000000000000000000000000000000000..273ac5e2439e2262bf3c37ec4daa9a253e37f75a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/workers/worker-with-performance-observer.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<html>
+<head>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+</head>
+<body>
+<script>
+async_test(function(t) {
+ var worker = new Worker("resources/worker-with-perfobs.js");
tdresser 2017/07/04 14:31:46 var -> const
npm 2017/07/07 14:45:09 Done.
+ worker.onmessage = function (event) {
+ t.step( function() {
tdresser 2017/07/04 14:31:46 No space after ( Feel free to use arrow functions
npm 2017/07/07 14:45:09 Done.
+ assert_equals('SUCCESS', event.data);
+ });
+ t.done();
+ };
+}, 'Worker: Test Performance Observer inside a worker.');
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698