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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/stroke-dasharray-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/responsive/stroke-dasharray-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/stroke-dasharray-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/stroke-dasharray-responsive.html
deleted file mode 100644
index 2d18846b2f3db338385dfdfd5c4374171754cd15..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/stroke-dasharray-responsive.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'stroke-dasharray',
- from: neutralKeyframe,
- to: '80px',
- configurations: [{
- state: {underlying: '20px, 40px'},
- expect: [
- {at: 0.25, is: '35px, 50px'},
- {at: 0.75, is: '65px, 70px'},
- ],
- }, {
- state: {underlying: '20px, 40px, 60px'},
- expect: [
- {at: 0.25, is: '35px, 50px, 65px'},
- {at: 0.75, is: '65px, 70px, 75px'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'stroke-dasharray',
- from: 'inherit',
- to: '80px',
- configurations: [{
- state: {inherited: '20px, 40px'},
- expect: [
- {at: 0.25, is: '35px, 50px'},
- {at: 0.75, is: '65px, 70px'},
- ],
- }, {
- state: {inherited: '20px, 40px, 60px'},
- expect: [
- {at: 0.25, is: '35px, 50px, 65px'},
- {at: 0.75, is: '65px, 70px, 75px'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698