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

Unified Diff: third_party/WebKit/LayoutTests/fast/transforms/transforms-with-zoom.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/transforms-with-zoom.html
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-zoom.html b/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-zoom.html
deleted file mode 100644
index 57eeb6c891f51eb7f0127dade31d9f2a3499edaa..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-zoom.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<html>
-<head>
-<style>
-body {
- margin: 0;
- zoom: 120%;
-}
-.box {
- position: absolute;
- top: 20px;
- width:100px;
- height:100px;
-}
-
-.tester1 {
- left: 100px;
- top: 70px;
- background-color: red;
-}
-
-.tester2 {
- left: 250px;
- top: 70px;
- background-color: red;
-}
-
-.translated1 {
- transform: translate(100px, 50px);
- background-color: green;
-}
-
-.translated2 {
- -webkit-transform-origin: 50px, 50px;
- transform: translate(250px, 50px) rotate(90deg);
- background-color: green;
-}
-
-</style>
-</head>
-<body>
-
-<p><a href="https://bugs.webkit.org/show_bug.cgi?id=24784">https://bugs.webkit.org/show_bug.cgi?id=24784</a></p>
-<p>Test transform lengths with zoom. You should see two green squares below, no red.</p>
-
-<div class="tester1 box"></div>
-<div class="tester2 box"></div>
-
-<div class="translated1 box"></div>
-<div class="translated2 box"></div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698