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

Unified Diff: LayoutTests/compositing/squashing/squash-clipped-expected.html

Issue 137143009: Add a number of tests for layer squashing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: moar expectations Created 6 years, 10 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/compositing/squashing/squash-clipped-expected.html
diff --git a/LayoutTests/compositing/squashing/squash-clipped-expected.html b/LayoutTests/compositing/squashing/squash-clipped-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..3c56cb44dbb6399a0f3395fc88e4262debf2f196
--- /dev/null
+++ b/LayoutTests/compositing/squashing/squash-clipped-expected.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<head>
+<style>
+.composited {
+ -webkit-transform: translatez(0);
+}
+
+.box {
+ width: 100px;
+ height: 100px;
+}
+
+.behind {
+ position: absolute;
+ z-index: 1;
+ top: 100px;
+ left: 100px;
+ background-color: blue;
+}
+
+.middle {
+ position: absolute;
+ z-index: 1;
+ top: 180px;
+ left: 180px;
+ background-color: lime;
+}
+
+.middle2 {
+ position: absolute;
+ z-index: 1;
+ top: 260px;
+ left: 260px;
+ background-color: magenta;
+}
+
+.top {
+ position: absolute;
+ z-index: 1;
+ top: 340px;
+ left: 340px;
+ background-color: cyan;
+}
+
+.clipper {
+ -webkit-transform: translatez(0);
+ width: 400px;
+ height: 400px;
+ background-color: gray;
+ overflow: hidden;
+}
+
+div:hover {
+ background-color: green;
+}
+
+</style>
+</head>
+<body>
+ <div class="clipper">
+ <div class="composited box behind"></div>
+ <div class="box middle"></div>
+ <div class="box middle2"></div>
+ <div class="box top"></div>
+ </div>
+</body>
« no previous file with comments | « LayoutTests/compositing/squashing/squash-clipped.html ('k') | LayoutTests/compositing/squashing/squash-onto-nephew.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698