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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/pixel-crack-image-background-webkit-transform-scale.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/fast/images/pixel-crack-image-background-webkit-transform-scale.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/pixel-crack-image-background-webkit-transform-scale.html b/third_party/WebKit/LayoutTests/fast/images/pixel-crack-image-background-webkit-transform-scale.html
deleted file mode 100644
index ba3610bb7c28cab570c7e75ee08093c1b1f40356..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/pixel-crack-image-background-webkit-transform-scale.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<head>
- <style>
- div {
- transform: scale(2.7937);
- background-image: url('./resources/pixel-crack-image-background-webkit-transform-scale.png');
- background-position: 16px 16px;
- height: 16px;
- width: 16px;
- position:absolute;
- }
- </style>
-
- <script type = "text/javascript">
-
- function runTest()
- {
- for (var j=6; j<=35; ++j)
- for (var i=1; i<=40; ++i) {
- var div = document.createElement('div');
- div.style.left = i*12;
- div.style.top = j*12;
- document.body.appendChild(div);
- }
- }
- </script>
-</head>
-<body onload="runTest()">
-<p>
-Test pixel cracks when background sprite is transformed with scale. Need to run pixel test to verify if it is successful.
-</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698