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

Unified Diff: third_party/WebKit/LayoutTests/web-animations-api/animation-constructor.html

Issue 2142593003: Remove some tests that are duplicated by w3c tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/web-animations-api/timed-item-specified-setters.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/web-animations-api/animation-constructor.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/animation-constructor.html b/third_party/WebKit/LayoutTests/web-animations-api/animation-constructor.html
deleted file mode 100644
index 6c131ee9f7daa6ce4b85950fbc05f9580775b30b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/animation-constructor.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-
-<div id='e'></div>
-
-<script>
-var element = document.getElementById('e');
-
-var keyframes = [{opacity: '1'}, {opacity: '0'}];
-var timingObject = {duration: 2, iterations: 5};
-
-test(function() {
- var keyframeEffect = new KeyframeEffect(element, keyframes, timingObject);
- assert_not_equals(keyframeEffect, undefined);
- assert_equals(keyframeEffect.constructor, KeyframeEffect);
-}, 'Calling new KeyframeEffect() with a timing object input should create an keyframeEffect.');
-
-test(function() {
- var keyframeEffect = new KeyframeEffect(element, keyframes, 2);
- assert_not_equals(keyframeEffect, undefined);
- assert_equals(keyframeEffect.constructor, KeyframeEffect);
-}, 'Calling new KeyframeEffect() with a duration input should create an keyframeEffect.');
-
-test(function() {
- var keyframeEffect = new KeyframeEffect(element, keyframes);
- assert_not_equals(keyframeEffect, undefined);
- assert_equals(keyframeEffect.constructor, KeyframeEffect);
-}, 'Calling new KeyframeEffect() with no timing input should create an keyframeEffect.');
-
-test(function() {
- var keyframeEffect = new KeyframeEffect(null, keyframes);
- assert_not_equals(keyframeEffect, undefined);
- assert_equals(keyframeEffect.constructor, KeyframeEffect);
-}, 'Calling new KeyframeEffect() with no target should create an keyframeEffect.');
-</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/web-animations-api/timed-item-specified-setters.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698