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

Unified Diff: third_party/WebKit/LayoutTests/css3/images/cross-fade-overflow-position.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-overflow-position.html
diff --git a/third_party/WebKit/LayoutTests/css3/images/cross-fade-overflow-position.html b/third_party/WebKit/LayoutTests/css3/images/cross-fade-overflow-position.html
deleted file mode 100644
index 7ea5d742e11f7ad791fd921982e7392718220631..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/css3/images/cross-fade-overflow-position.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<head>
- <title>The crossfade should appear as two *bottom* halves of a green circle, with a paler green background.</title>
- <style>
- #image {
- background-image: -webkit-cross-fade(url(resources/half-circles.svg), url(resources/green-100.png), 50%);
- width: 100px; height: 100px;
- background-repeat: no-repeat;
- }
-
- #tiledImage {
- background-image: -webkit-cross-fade(url(resources/half-circles.svg), url(resources/green-100.png), 50%);
- width: 300px; height: 300px;
- }
-
- div.container {
- overflow: hidden;
- height: 50px;
- width: 100px;
- margin: 10px;
- }
- </style>
- <script>
- function load()
- {
- var normalContainer = document.getElementById("normal");
- normalContainer.scrollTop = normalContainer.scrollHeight;
- var tiledContainer = document.getElementById("tiled");
- tiledContainer.scrollTop = tiledContainer.scrollHeight;
- }
- </script>
-</head>
-<body onload="load()">
- <div id="normal" class="container">
- <div id="image"></div>
- </div>
- <div id="tiled" class="container">
- <div id="tiledImage"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698