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

Unified Diff: LayoutTests/inspector/timeline/tracing/buffer-usage.html

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/buffer-usage.html
diff --git a/LayoutTests/inspector/timeline/tracing/buffer-usage.html b/LayoutTests/inspector/timeline/tracing/buffer-usage.html
deleted file mode 100644
index 41de12ca9cc9ecf76f19b43e08751b85afbf553a..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/timeline/tracing/buffer-usage.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/timeline-test.js"></script>
-<script src="../../tracing-test.js"></script>
-<script>
-
-function test()
-{
- InspectorTest.tracingModel.addEventListener(WebInspector.TracingModel.Events.BufferUsage, onBufferUsage, this);
- InspectorTest.tracingTimelineModel.startRecording();
- function onBufferUsage(event)
- {
- InspectorTest.tracingModel.removeEventListener(WebInspector.TracingModel.Events.BufferUsage, onBufferUsage, this);
- InspectorTest.tracingTimelineModel.stopRecording();
- InspectorTest.addResult("SUCCESS: Received buffer usage update.");
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that buffer usage update are sent when recording trace events.
-</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698