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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/effect.html

Issue 2408083002: Revert of Import wpt@357b83b809e3cbc7a1805e7c3ca108a7980d782f (Closed)
Patch Set: Created 4 years, 2 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/imported/wpt/web-animations/interfaces/Animation/effect.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/effect.html b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/effect.html
deleted file mode 100644
index d881a96a7dc92040d260c93b2f907f4c6579f3c0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/effect.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<title>Animation.effect tests</title>
-<link rel="help" href="https://w3c.github.io/web-animations/#dom-animation-effect">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="../../testcommon.js"></script>
-<body>
-<div id="log"></div>
-<script>
-"use strict";
-
-test(function(t) {
- var anim = new Animation();
- assert_equals(anim.effect, null, "initial effect is null");
-
- var newEffect = new KeyframeEffectReadOnly(createDiv(t), null);
- anim.effect = newEffect;
- assert_equals(anim.effect, newEffect, "new effect is set");
-}, "effect is set correctly.");
-
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698