Index: third_party/WebKit/LayoutTests/css3/images/cross-fade-background-size.html |
diff --git a/third_party/WebKit/LayoutTests/css3/images/cross-fade-background-size.html b/third_party/WebKit/LayoutTests/css3/images/cross-fade-background-size.html |
deleted file mode 100644 |
index 9a9b349c95e44bc44ec2982aafa1bbaceb527d04..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/css3/images/cross-fade-background-size.html |
+++ /dev/null |
@@ -1,51 +0,0 @@ |
-<html> |
-<head> |
-<title>There should be four bars, equivalent except for the length of the bar.</title> |
-<style> |
- |
-div |
-{ |
- width: 200px; |
- height: 50px; |
-} |
- |
-#compositeTiledNormal |
-{ |
- background-image: url(resources/stripes-large.png); |
- transform: translateZ(0); |
- background-size: 10px 50px; |
-} |
- |
-#compositeTiledCrossfade |
-{ |
- background-image: -webkit-cross-fade(url(resources/stripes-large.png), url(resources/stripes-small.png), 1%); |
- transform: translateZ(0); |
- background-size: 10px 50px; |
-} |
- |
- |
-#normal |
-{ |
- background-image: url(resources/stripes-large.png); |
- background-size: 10px 50px; |
- background-repeat: no-repeat; |
-} |
- |
-#crossfade |
-{ |
- background-image: -webkit-cross-fade(url(resources/stripes-large.png), url(resources/stripes-small.png), 1%); |
- background-size: 10px 50px; |
- background-repeat: no-repeat; |
-} |
- |
- |
-</style> |
-</head> |
-<body> |
-<div id="compositeTiledNormal"></div><br/> |
-<div id="compositeTiledCrossfade"></div> |
-<br/><br/> |
-<div id="normal"></div><br/> |
-<div id="crossfade"></div> |
-</body> |
-</html> |