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

Unified Diff: LayoutTests/compositing/reorder-z-with-style-expected.html

Issue 215063006: Separate the geometry update from rebuilding the GraphicsLayer tree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/reorder-z-with-style-expected.html
diff --git a/LayoutTests/compositing/reorder-z-with-style-expected.html b/LayoutTests/compositing/reorder-z-with-style-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..abb21c2a4c7cc1d6b3cef145d712b18a1c60a6fa
--- /dev/null
+++ b/LayoutTests/compositing/reorder-z-with-style-expected.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<style>
+ #container {
+ height: 300px;
+ width: 300px;
+ background-color: green;
+ -webkit-transform: translateZ(0);
+ }
+
+ #parent {
+ position: absolute;
+ left: 400px;
+ width: 300px;
+ height: 300px;
+ background-color: green;
+ -webkit-transform: translateZ(0);
+ }
+</style>
+<body>
+<div id="container">
+ <div id="parent">
+ </div>
+</div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698