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

Side by Side Diff: LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll-expected.html

Issue 211683003: Return an infinite rect when calling RenderLayerClipper::parentClipRects on the root context layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed nit. Created 6 years, 9 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 <style type="text/css">
2 .first {
3 height:400px;
4 background-color: red;
5 }
6
7 .second {
8 left: 100px;
9 bottom: 0px;
10 background-color:blue;
11 width:7px;
12 height:562px;
13 position: absolute;
14 }
15
16 .outer {
17 overflow: scroll;
18 /* FIXME: make this height: 500px to expose another bug */
19 height: 600px;
20 width: 500px;
21 position: absolute;
22 bottom:10px;
23 background-color: grey;
24 }
25 </style>
26 <div class="outer">
27 <div class="first"> </div>
28 <div class="second"> </div>
29 </div>
30 <script>
31 if (window.internals)
32 window.internals.settings.setLayerSquashingEnabled(true);
33 </script>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/squashing/abspos-under-abspos-overflow-scroll.html ('k') | Source/core/rendering/RenderLayerClipper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698