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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/fixed-position-container.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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 #clip {
5 position: absolute;
6 overflow: hidden;
7 width: 300px;
8 height: 300px;
9 }
10
11 #transform {
12 transform: scale3d(2, 2, 1);
13 background-color: blue;
14 width: 200px;
15 height: 200px;
16 }
17
18 #fixed {
19 will-change: transform;
20 position: fixed;
21 top: 50px;
22 left: 50px;
23 width: 100px;
24 height: 100px;
25 background-color: green;
26 }
27 </style>
28
29 <div id='clip'>
30 <div id='transform'>
31 <div id='fixed'></div>
32 </div>
33 </div>
OLDNEW
« no previous file with comments | « cc/layers/layer.cc ('k') | third_party/WebKit/LayoutTests/compositing/fixed-position-container-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698