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

Unified Diff: third_party/WebKit/LayoutTests/animations/stacked-visibility-animations-responsive.html

Issue 2973013002: Group all responsive animation tests together (Closed)
Patch Set: Rebase Created 3 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
Index: third_party/WebKit/LayoutTests/animations/stacked-visibility-animations-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/stacked-visibility-animations-responsive.html b/third_party/WebKit/LayoutTests/animations/stacked-visibility-animations-responsive.html
deleted file mode 100644
index 6489018db83cff15ec4cceffb26156da20420115..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/stacked-visibility-animations-responsive.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<div id="target"></div>
-<script>
-test(() => {
- var firstAnimation = target.animate([{visibility: 'hidden'}, {visibility: 'visible'}], 1);
- var secondAnimation = target.animate({visibility: 'collapse'}, 1);
- firstAnimation.pause();
- firstAnimation.currentTime = 0;
- secondAnimation.pause();
- secondAnimation.currentTime = 0.75;
- assert_equals(getComputedStyle(target).visibility, 'collapse');
- firstAnimation.currentTime = 0.1;
- assert_equals(getComputedStyle(target).visibility, 'visible');
-}, "Visibility animations with neutral keyframes should be responsive to animations they're stacked on top of.");
-</script>

Powered by Google App Engine
This is Rietveld 408576698