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

Side by Side Diff: LayoutTests/compositing/will-change/containing-block-removed-expected.html

Issue 175263002: Implement will-change-based creation of layers, stacking contexts, and containing blocks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Always create a stacking context for will-change:position 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #container {
6 position: absolute;
7 left: 200px;
8 top: 100px;
9 width: 100px;
10 height: 100px;
11 background-color: blue;
12 }
13
14 .fixed {
15 position: fixed;
16 left: 50px;
17 top: 50px;
18 width: 75px;
19 height: 75px;
20 background-color: green
21 }
22 </style>
23 </head>
24
25 <body>
26 <div id="container">
27 <div class="fixed"></div>
28 </div>
29 </body>
30
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698