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

Side by Side Diff: LayoutTests/fast/backgrounds/gradient-background-leakage-2.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 type="text/css"> 4 <style type="text/css">
5 .box { 5 .box {
6 height: 50px; 6 height: 50px;
7 width: 300px; 7 width: 300px;
8 margin: 10px; 8 margin: 10px;
9 background-image: -webkit-linear-gradient(black, black); 9 background-image: -webkit-linear-gradient(black, black);
10 border-radius: 25px; 10 border-radius: 25px;
11 border: 4px solid green; 11 border: 4px solid green;
12 -webkit-transform: scale(0.25); 12 transform: scale(0.25);
13 } 13 }
14 </style> 14 </style>
15 </head> 15 </head>
16 <body> 16 <body>
17 <!-- You should see no red leaking through the inner edge of the border. --> 17 <!-- You should see no red leaking through the inner edge of the border. -->
18 <div style="background-color: red; height: 60px; width: 310px"> 18 <div style="background-color: red; height: 60px; width: 310px">
19 <div class="box"></div> 19 <div class="box"></div>
20 </div> 20 </div>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/backgrounds/gradient-background-leakage.html ('k') | LayoutTests/fast/backgrounds/mask-box-image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698