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

Side by Side Diff: LayoutTests/compositing/squashing/visibility-composited-squashing.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .set { 5 .set {
6 position: absolute; 6 position: absolute;
7 top: 8px; 7 top: 8px;
8 } 8 }
9 .box { 9 .box {
10 height: 100px; 10 height: 100px;
(...skipping 27 matching lines...) Expand all
38 document.getElementById('target2').classList.add('visible'); 38 document.getElementById('target2').classList.add('visible');
39 setTimeout(function() { 39 setTimeout(function() {
40 if (window.testRunner) 40 if (window.testRunner)
41 testRunner.notifyDone(); 41 testRunner.notifyDone();
42 }); 42 });
43 }); 43 });
44 }); 44 });
45 </script> 45 </script>
46 </head> 46 </head>
47 <body> 47 <body>
48 <!-- This test checks that squashed RenderLayers are painted even if not all 48 <!-- This test checks that squashed Layers are painted even if not all
49 of the RenderLayers squahed into a given GraphicsLayer are visible. --> 49 of the Layers squahed into a given GraphicsLayer are visible. -->
50 <div class="set"> 50 <div class="set">
51 <div class="composited box"></div> 51 <div class="composited box"></div>
52 <div class="squashed hidden" style="top: 4px"></div> 52 <div class="squashed hidden" style="top: 4px"></div>
53 <div id="target1" class="squashed hidden" style="top: 54px"></div> 53 <div id="target1" class="squashed hidden" style="top: 54px"></div>
54 </div> 54 </div>
55 55
56 <div class="set" style="top: 116px"> 56 <div class="set" style="top: 116px">
57 <div class="composited box"></div> 57 <div class="composited box"></div>
58 <div id="target2" class="squashed hidden" style="top: 4px"></div> 58 <div id="target2" class="squashed hidden" style="top: 4px"></div>
59 <div class="squashed hidden" style="top: 54px"></div> 59 <div class="squashed hidden" style="top: 54px"></div>
60 </div> 60 </div>
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698