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

Side by Side Diff: LayoutTests/css3/filters/filter-repaint-child-layers.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 <!-- 2 <!--
3 This tests verifies that blur is repainted using the full source image of th e element instead of just the dirty area. 3 This tests verifies that blur is repainted using the full source image of th e element instead of just the dirty area.
4 Also it tests that the filter area includes all the child RenderLayers and a pplies the children's transforms correctly. 4 Also it tests that the filter area includes all the child Layers and applies the children's transforms correctly.
5 You should see three green rectangles slightly rotated and blured. There sho uld be no red. 5 You should see three green rectangles slightly rotated and blured. There sho uld be no red.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <style> 9 <style>
10 .box { 10 .box {
11 position: relative; 11 position: relative;
12 margin: 10px; 12 margin: 10px;
13 height: 50px; 13 height: 50px;
14 width: 50px; 14 width: 50px;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 <body onload="repaintTest()"> 52 <body onload="repaintTest()">
53 53
54 <div class="blur"> 54 <div class="blur">
55 <div class="box"></div> 55 <div class="box"></div>
56 <div class="box before"></div> 56 <div class="box before"></div>
57 <div class="box"></div> 57 <div class="box"></div>
58 </div> 58 </div>
59 59
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698