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

Side by Side Diff: LayoutTests/compositing/layer-creation/iframe-clip-removed-expected.html

Issue 1181743003: Rebuild GraphicsLayer tree when a LayoutPart's CDPLM configuration changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 <style>
3 #subframe {
4 width: 400px;
5 height: 500px;
6 background-color: blue;
7 position: relative;
8 }
9
10 #scroller {
11 height: 200px;
12 width: 300px;
13 position: absolute;
14 overflow: scroll;
15 }
16
17 #clip {
18 position: absolute;
19 }
20 </style>
21 <script>
22 if (window.testRunner && window.internals) {
23 internals.settings.setPreferCompositingToLCDTextEnabled(true);
24 }
25
26 </script>
27
28 <div id="scroller">
29 <div id="clip">
30 <iframe id="subframe"></iframe>
31 </div>
32 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698