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

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

Powered by Google App Engine
This is Rietveld 408576698