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

Side by Side Diff: LayoutTests/css3/blending/mix-blend-mode-multiply-expected.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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .parent { 5 .parent {
6 background-color: white; 6 background-color: white;
7 width: 60px; 7 width: 60px;
8 height: 60px; 8 height: 60px;
9 float: left; 9 float: left;
10 margin-left: 10px; 10 margin-left: 10px;
11 } 11 }
12 .child { 12 .child {
13 width: 60px; 13 width: 60px;
14 height: 60px; 14 height: 60px;
15 background-color: green; 15 background-color: green;
16 } 16 }
17 </style> 17 </style>
18 <body> 18 <body>
19 <p>Test that mix-blend-mode multiply has no effect when applied over a white b ackground, for both software and hardware paths.</p> 19 <p>Test that mix-blend-mode multiply has no effect when applied over a white b ackground, for both software and hardware paths.</p>
20 <p>This test passes if there are one black and two green boxes.</p> 20 <p>This test passes if there are one black and two green boxes.</p>
21 <div class="parent"> 21 <div class="parent">
22 <div class="child" style="background-color: black;"></div> 22 <div class="child" style="background-color: black;"></div>
23 </div> 23 </div>
24 <div class="parent"> 24 <div class="parent">
25 <div class="child" style="-webkit-transform: rotateX(0deg);"></div> 25 <div class="child" style="transform: rotateX(0deg);"></div>
26 </div> 26 </div>
27 <div class="parent"> 27 <div class="parent">
28 <div class="child"></div> 28 <div class="child"></div>
29 </div> 29 </div>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/blending/mix-blend-mode-multiply.html ('k') | LayoutTests/css3/calc/transforms-scale.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698