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

Unified Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-d-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/svg-attribute-responsive/svg-d-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-d-responsive.html b/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-d-responsive.html
deleted file mode 100644
index 2a3fd413583a3f99f527e6d0a2dbcb35e3bc86b7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-d-responsive.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<script src="../responsive/resources/responsive-test.js"></script>
-<script>
-assertSVGResponsive({
- targetTag: 'path',
- property: 'd',
- getter(target) {
- return target.getAttribute('d');
- },
- from: 'm 10 10 h 100',
- to: neutralKeyframe,
- configurations: [{
- state: {underlying: 'M 30 30 H 250'},
- expect: [
- {at: 0.25, is: 'M 15 15 H 145'},
- {at: 0.75, is: 'M 25 25 H 215'},
- ],
- }, {
- state: {underlying: 'm 30 30 h 200'},
- expect: [
- {at: 0.25, is: 'm 15 15 h 125'},
- {at: 0.75, is: 'm 25 25 h 175'},
- ],
- }, {
- state: {underlying: 'M 30 30 L 100 100'},
- expect: [
- {at: 0.25, is: 'm 10 10 h 100'},
- {at: 0.75, is: 'M 30 30 L 100 100'},
- ],
- }],
-});
-
-assertSVGResponsive({
- targetTag: 'path',
- property: 'd',
- getter(target) {
- return target.getAttribute('d');
- },
- from: '',
- to: neutralKeyframe,
- configurations: [{
- state: {underlying: 'm 10 10 h 100'},
- expect: [
- {at: 0.25, is: ''},
- {at: 0.75, is: 'm 10 10 h 100'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698