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

Unified Diff: LayoutTests/inspector/timeline/tracing/resources/worker.js

Issue 477153005: DevTools: adopt existing Timeline tests for tracing based Timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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: LayoutTests/inspector/timeline/tracing/resources/worker.js
diff --git a/LayoutTests/inspector/timeline/tracing/resources/worker.js b/LayoutTests/inspector/timeline/tracing/resources/worker.js
deleted file mode 100644
index 59330498eb1529e5853cc031a7d3e1a5bb4ac297..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/timeline/tracing/resources/worker.js
+++ /dev/null
@@ -1,9 +0,0 @@
-onmessage = function(event) {
- doWork();
- setInterval(doWork, 0);
-};
-var message_id = 0;
-function doWork()
-{
- postMessage("Message #" + message_id++);
-}

Powered by Google App Engine
This is Rietveld 408576698