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

Side by Side Diff: LayoutTests/css3/filters/filter-change-repaint-composited.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 This tests verifies that filters repaint correctly in composited mode when t he filter property is changed. 3 This tests verifies that filters repaint correctly in composited mode when t he filter property is changed.
4 You should see 7 green rectangles. First 6 of the rectangles have a blue sha dow. There should be no red. 4 You should see 7 green rectangles. First 6 of the rectangles have a blue sha dow. There should be no red.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <style> 8 <style>
9 .box { 9 .box {
10 /* force a composited layer */ 10 /* force a composited layer */
11 -webkit-transform: translate3d(0, 0, 0); 11 transform: translate3d(0, 0, 0);
12 float: left; 12 float: left;
13 height: 50px; 13 height: 50px;
14 width: 50px; 14 width: 50px;
15 margin: 50px; 15 margin: 50px;
16 background-color: green; 16 background-color: green;
17 } 17 }
18 18
19 .composited_from_none { 19 .composited_from_none {
20 -webkit-filter: drop-shadow(0px 0px 10px blue); 20 -webkit-filter: drop-shadow(0px 0px 10px blue);
21 } 21 }
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 <body onload="repaintTest()"> 96 <body onload="repaintTest()">
97 <div class="box composited_from_none before"></div> 97 <div class="box composited_from_none before"></div>
98 <div class="box composited_from_composited before"></div> 98 <div class="box composited_from_composited before"></div>
99 <div class="box composited_from_composited_zero_radius before"></div> 99 <div class="box composited_from_composited_zero_radius before"></div>
100 <div class="box composited_from_composited_offset before"></div> 100 <div class="box composited_from_composited_offset before"></div>
101 <div class="box composited_from_software before"></div> 101 <div class="box composited_from_software before"></div>
102 <div class="box software_from_composited before"></div> 102 <div class="box software_from_composited before"></div>
103 <div class="box none_from_composited before"></div> 103 <div class="box none_from_composited before"></div>
104 </body> 104 </body>
105 </html> 105 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/filters/filter-change-repaint.html ('k') | LayoutTests/css3/filters/filter-repaint-child-layers.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698