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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/background-image-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/background-image-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/background-image-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/background-image-responsive.html
deleted file mode 100644
index 23e33dd22d0d4bdc671cccdfddebec92f4384016..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/background-image-responsive.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'background-image',
- from: neutralKeyframe,
- to: 'url("test://to")',
- configurations: [{
- state: {underlying: 'url("test://a")'},
- expect: [
- {at: 0.25, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.25)'},
- {at: 0.75, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.75)'},
- ],
- }, {
- state: {underlying: 'url("test://b"), url("test://c")'},
- expect: [
- {at: 0.25, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.25), -webkit-cross-fade(url("test://c"), url("test://to"), 0.25)'},
- {at: 0.75, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.75), -webkit-cross-fade(url("test://c"), url("test://to"), 0.75)'},
- ],
- }, {
- state: {underlying: 'none'},
- expect: [
- {at: 0.25, is: 'none'},
- {at: 0.75, is: 'url("test://to")'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'background-image',
- from: 'inherit',
- to: 'url("test://to")',
- configurations: [{
- state: {inherited: 'url("test://a")'},
- expect: [
- {at: 0.25, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.25)'},
- {at: 0.75, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.75)'},
- ],
- }, {
- state: {inherited: 'url("test://b"), url("test://c")'},
- expect: [
- {at: 0.25, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.25), -webkit-cross-fade(url("test://c"), url("test://to"), 0.25)'},
- {at: 0.75, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.75), -webkit-cross-fade(url("test://c"), url("test://to"), 0.75)'},
- ],
- }, {
- state: {inherited: 'none'},
- expect: [
- {at: 0.25, is: 'none'},
- {at: 0.75, is: 'url("test://to")'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698