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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/color-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/color-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/color-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/color-responsive.html
deleted file mode 100644
index bda455396238e8c00295547a540ad50cd4e440b6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/color-responsive.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'color',
- from: 'inherit',
- to: 'green',
- configurations: [{
- state: {inherited: 'blue'},
- expect: [
- {at: 0.25, is: 'rgb(0, 32, 191)'},
- {at: 0.75, is: 'rgb(0, 96, 64)'},
- ],
- }, {
- state: {inherited: 'yellow'},
- expect: [
- {at: 0.25, is: 'rgb(191, 223, 0)'},
- {at: 0.75, is: 'rgb(64, 160, 0)'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'color',
- from: 'currentcolor',
- to: 'green',
- configurations: [{
- state: {inherited: 'blue'},
- expect: [
- {at: 0.25, is: 'rgb(0, 32, 191)'},
- {at: 0.75, is: 'rgb(0, 96, 64)'},
- ],
- }, {
- state: {inherited: 'yellow'},
- expect: [
- {at: 0.25, is: 'rgb(191, 223, 0)'},
- {at: 0.75, is: 'rgb(64, 160, 0)'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'color',
- from: 'green',
- to: 'currentcolor',
- configurations: [{
- state: {inherited: 'blue'},
- expect: [
- {at: 0.25, is: 'rgb(0, 96, 64)'},
- {at: 0.75, is: 'rgb(0, 32, 191)'},
- ],
- }, {
- state: {inherited: 'yellow'},
- expect: [
- {at: 0.25, is: 'rgb(64, 160, 0)'},
- {at: 0.75, is: 'rgb(191, 223, 0)'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698