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

Unified Diff: third_party/WebKit/LayoutTests/transforms/translate-expected.html

Issue 1640293004: Support arbitrary length units for the z component of CSS property "translate" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review change Created 4 years, 11 months 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/transforms/translate-expected.html
diff --git a/third_party/WebKit/LayoutTests/transforms/translate-expected.html b/third_party/WebKit/LayoutTests/transforms/translate-expected.html
index 6ef8857196a7b485616c570b36c78ef22d7688ce..38867ca233afe875f7eb89a7f55be0bf8cbe751a 100644
--- a/third_party/WebKit/LayoutTests/transforms/translate-expected.html
+++ b/third_party/WebKit/LayoutTests/transforms/translate-expected.html
@@ -7,7 +7,6 @@ div {
}
.container {
transform: translate(100px, 100px);
- background-color: red;
transform-style: preserve-3d;
perspective-origin: 150% 150%;
perspective: 500px;
@@ -19,12 +18,17 @@ div {
transform: translate3d(100%, -200%, -500px);
}
#box3 {
+ transform: translate3d(0px, 0px, 10em);
+}
+#box4 {
transform: translate(300px);
}
</style>
<div class="container">
+ container
<div id="box1">1</div>
<div id="box2">2</div>
+ <div id="box3">3</div>
</div>
-<div id="box3">3</div>
+<div id="box4">4</div>

Powered by Google App Engine
This is Rietveld 408576698