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

Unified Diff: third_party/WebKit/LayoutTests/fast/transforms/mirror-transform-tiled-scaled-background.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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/transforms/mirror-transform-tiled-scaled-background.html
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/mirror-transform-tiled-scaled-background.html b/third_party/WebKit/LayoutTests/fast/transforms/mirror-transform-tiled-scaled-background.html
deleted file mode 100644
index f846e2c51fa09d760ee98c7b9a3d2525d7607b1f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/transforms/mirror-transform-tiled-scaled-background.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<title>Tiled and scaled background with 'transform: scale(1, -1)'</title>
-<style>
-div {
- width: 100px;
- height: 100px;
-}
-#subject {
- background-size: 95px 100px;
- transform: scale(1, -1);
-}
-</style>
-<div id=back>
- <div id=subject></div>
-</div>
-<script>
-function stripedImage(c1, c2) {
- var c = document.createElement('canvas');
- c.width = c.height = 100;
- var ctx = c.getContext('2d');
- ctx.fillStyle = c1;
- ctx.fillRect(0, 0, 100, 50);
- ctx.fillStyle = c2;
- ctx.fillRect(0, 50, 100, 50);
- return c.toDataURL('image/png');
-}
-document.getElementById('back').style.background = 'url(' + stripedImage('#080', '#f00') + ')';
-document.getElementById('subject').style.backgroundImage = 'url(' + stripedImage('#080', 'transparent') + ')';
-</script>

Powered by Google App Engine
This is Rietveld 408576698