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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp 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/inspector-protocol/timeline/timeline-raf.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.html b/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.html
deleted file mode 100644
index 8aaf9aa2c785e06985a7d30e00c2c3243d28f437..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-raf.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<html>
-<head>
-<script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
-<script type="text/javascript" src="../../http/tests/inspector-protocol/tracing-test.js"></script>
-<script>
-
-function performActions()
-{
- var callback;
- var promise = new Promise((fulfill) => callback = fulfill);
- var rafId2;
- var rafId1 = requestAnimationFrame(() => callback({ rafId1: rafId1, rafId2: rafId2 }));
- rafId2 = requestAnimationFrame(function() { });
- cancelAnimationFrame(rafId2);
- return promise;
-}
-
-function test()
-{
- InspectorTest.invokeAsyncWithTracing("performActions", finish);
-
- function finish(devtoolsEvents, data)
- {
- var firedRaf = data.rafId1;
- var canceledRaf = data.rafId2;
-
- function hasRafId(id, e) { return e.args.data.id === id}
-
- var raf1 = InspectorTest.findEvent("RequestAnimationFrame", "I", hasRafId.bind(this, firedRaf));
- var raf2 = InspectorTest.findEvent("RequestAnimationFrame", "I", hasRafId.bind(this, canceledRaf));
-
- InspectorTest.log("RequestAnimationFrame has frame: " + !!raf1.args.data.frame);
- InspectorTest.log("RequestAnimationFrame frames match: " + (raf1.args.data.frame === raf2.args.data.frame));
-
- InspectorTest.findEvent("CancelAnimationFrame", "I", hasRafId.bind(this, canceledRaf));
- InspectorTest.findEvent("FireAnimationFrame", "X", hasRafId.bind(this, firedRaf));
-
- InspectorTest.log("SUCCESS: found all expected events.");
- InspectorTest.completeTest();
- }
-}
-</script>
-</head>
-<body onLoad="runTest();">
-<div id="myDiv">DIV</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698