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

Unified Diff: LayoutTests/transforms/scale-expected.html

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Correct equality operators and remove dependencies on size() in parser Created 5 years, 6 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: LayoutTests/transforms/scale-expected.html
diff --git a/LayoutTests/transforms/scale-expected.html b/LayoutTests/transforms/scale-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe631d2ba6af310070b8c446eac514531e9eb644
--- /dev/null
+++ b/LayoutTests/transforms/scale-expected.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<head>
+<style>
+div {
+ width: 100px;
+ height: 100px;
+ background-color: blue;
+}
+.container {
+ background-color: red;
+ perspective-origin: 150% 150%;
+ perspective: 500px;
+ transform: scale(0.5, 1);
+}
+#box1 {
+ transform: scale(0.5, 1);
+}
+#box2a {
+ transform: scale3d(-2, 3.5, 0.2) translate(400px);
+}
+#box2b {
+ backface-visibility: visible;
+ transform: scale3d(-2, 3.5, 0.2) translate(400px);
+}
+#box3 {
+ transform: scale3d(2, 3.5, 0.2) translate(200px, 100px);
+}
+</style>
+</head>
+
+<body>
+<div class="container">
+ <div id="box1">1</div>
+ <div id="box2a">2a</div>
+ <div id="box2b">2b</div>
+</div>
+<div id="box3">3</div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698