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

Unified Diff: third_party/WebKit/LayoutTests/css3/images/cross-fade-background-size.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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/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>

Powered by Google App Engine
This is Rietveld 408576698