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

Side by Side 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 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: scale(2, 2);
13 background-color: blue;
14 width: 200px;
15 height: 200px;
16 }
17
18 #fixed {
19 position: fixed;
20 top: 50px;
21 left: 50px;
22 width: 100px;
23 height: 100px;
24 background-color: green;
25 }
26 </style>
27
28 <div id='clip'>
29 <div id='transform'>
30 <div id='fixed'></div>
31 </div>
32 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698