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

Side by Side Diff: LayoutTests/compositing/squashing/squash-overflow-hidden-scrolltop-expected.html

Issue 264013002: Allow layers that need squashing to draw into the squashing layer in some cases. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added FIXME. Created 6 years, 7 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
3 <style type="text/css" media="screen">
4 .container {
5 display: inline-block;
6 width: 200px;
7 height: 200px;
8 overflow: hidden;
9 margin: 10px;
10 border: 1px solid black;
11 }
12
13 .inner {
14 width: 100%;
15 height: 1000px;
16 background-color: blue;
17 }
18
19 .nextto {
20 position: absolute;
21 top: 20px;
22 left: 20px;
23 width: 100px;
24 height: 100px;
25 }
26
27 .bottom {
28 height: 50%;
29 width: 100%;
30 background-color: green;
31 }
32 </style>
33 <div class="container" style="position: relative;">
34 <div class="inner" style="position: relative;">
35 <div class="bottom"></div>
36 </div>
37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698