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

Unified Diff: third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html

Issue 2683433002: Set m_graphicsLayer as fixed position container (Closed)
Patch Set: Add test, remove cc workaround Created 3 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: third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html
diff --git a/third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html b/third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..007c692914a7007e94abf9d98b4adbffdc2b9599
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+
+<style>
+ #clip {
+ position: absolute;
+ overflow: hidden;
+ width: 300px;
+ height: 300px;
+ }
+
+ #transform {
+ transform: scale(2, 2);
+ background-color: blue;
+ width: 200px;
+ height: 200px;
+ }
+
+ #fixed {
+ position: fixed;
+ top: 50px;
+ left: 50px;
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ }
+</style>
+
+<div id='clip'>
+ <div id='transform'>
+ <div id='fixed'></div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698