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/web-animations-api/change-in-animation-frame.html

Issue 2093423002: Move web-animations-api tests not being upstreamed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo move of reject-hyphen.html Created 4 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/web-animations-api/change-in-animation-frame.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/change-in-animation-frame.html b/third_party/WebKit/LayoutTests/web-animations-api/change-in-animation-frame.html
deleted file mode 100644
index e9f96347bc5c0b90919ea3b607e8e5e72308c819..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/change-in-animation-frame.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<div id="pass" style="visibility: hidden">PASS</div>
-<div id="fail" style="visibility: visible">FAIL</div>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-requestAnimationFrame(function() {
- document.getElementById('pass').animate([{visibility: 'visible'}, {visibility: 'visible'}], {fill: 'forwards'});
- document.getElementById('fail').animate([{visibility: 'hidden'}, {visibility: 'hidden'}], {fill: 'forwards'});
- if (window.testRunner) {
- testRunner.notifyDone();
- }
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698