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

Unified Diff: third_party/WebKit/LayoutTests/web-animations-api/delay-endDelay-phases.html

Issue 2910883002: Clean up duplicate tests in web-animations-api (Closed)
Patch Set: Rebase and remove one more reference to deleted test 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/web-animations-api/delay-endDelay-phases.html
diff --git a/third_party/WebKit/LayoutTests/web-animations-api/delay-endDelay-phases.html b/third_party/WebKit/LayoutTests/web-animations-api/delay-endDelay-phases.html
deleted file mode 100644
index 4bd14b12b849826c38aac4d836961cd82cd0bcb9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/web-animations-api/delay-endDelay-phases.html
+++ /dev/null
@@ -1,110 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<title>Test combinations of delay and endDelay</title>
-<link rel="help" href="https://w3c.github.io/web-animations/#the-animationeffecttiming-interface">
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="../external/wpt/web-animations/testcommon.js"></script>
-<body></body>
-<script>
-function testTiming({timing, expectations}, description) {
- test(t => {
- for (let {at, expect} of expectations) {
- let target = createDiv(t);
- let animation = target.animate({opacity: [0, 1]}, timing);
- animation.currentTime = at;
- assert_times_equal(Number(getComputedStyle(target).opacity), expect, 'at ' + at);
- animation.cancel();
- }
- }, description);
-}
-
-testTiming({
- timing: {
- duration: 10,
- delay: 1,
- endDelay: 1,
- fill: 'both',
- },
- expectations: [
- { at: 0, expect: 0 },
- { at: 1, expect: 0 },
- { at: 2, expect: 0.1 },
- { at: 10, expect: 0.9 },
- { at: 11, expect: 1 },
- { at: 12, expect: 1 },
- ],
-}, 'delay and endDelay both positive');
-
-testTiming({
- timing: {
- duration: 10,
- delay: 1,
- endDelay: -1,
- fill: 'both',
- },
- expectations: [
- { at: 0, expect: 0 },
- { at: 1, expect: 0 },
- { at: 2, expect: 0.1 },
- { at: 9, expect: 0.8 },
- { at: 10, expect: 0.9 },
- { at: 11, expect: 0.9 },
- ],
-}, 'Positive delay and negative endDelay');
-
-testTiming({
- timing: {
- duration: 10,
- delay: -1,
- endDelay: 1,
- fill: 'both',
- },
- expectations: [
- { at: -2, expect: 0 },
- { at: -1, expect: 0 },
- { at: 0, expect: 0.1 },
- { at: 1, expect: 0.2 },
- { at: 8, expect: 0.9 },
- { at: 9, expect: 1 },
- { at: 10, expect: 1 },
- ],
-}, 'Negative delay and positive endDelay');
-
-testTiming({
- timing: {
- duration: 10,
- delay: -1,
- endDelay: -1,
- fill: 'both',
- },
- expectations: [
- { at: -2, expect: 0 },
- { at: -1, expect: 0 },
- { at: 0, expect: 0.1 },
- { at: 1, expect: 0.2 },
- { at: 7, expect: 0.8 },
- { at: 8, expect: 0.9 },
- { at: 9, expect: 0.9 },
- { at: 10, expect: 0.9 },
- ],
-}, 'delay and endDelay both negative');
-
-testTiming({
- timing: {
- duration: 10,
- delay: 1,
- endDelay: -12,
- fill: 'both',
- },
- expectations: [
- { at: -2, expect: 0 },
- { at: -1, expect: 0 },
- { at: 0, expect: 0 },
- { at: 5, expect: 0 },
- { at: 10, expect: 0 },
- { at: 11, expect: 0 },
- { at: 12, expect: 0 },
- ],
-}, 'Negative endDelay that eclipses delay and duration');
-</script>

Powered by Google App Engine
This is Rietveld 408576698