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

Side by Side Diff: LayoutTests/fast/backgrounds/gradient-background-leakage.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: 50px; 10 border-radius: 50px;
11 border: 4px solid #EEE; 11 border: 4px solid #EEE;
12 } 12 }
13 .transformed { 13 .transformed {
14 -webkit-transform: scale(0.5); 14 transform: scale(0.5);
15 } 15 }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <!-- You should see no black leak out of the border. --> 19 <!-- You should see no black leak out of the border. -->
20 <div class="box"></div> 20 <div class="box"></div>
21 <div class="box transformed"></div> 21 <div class="box transformed"></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698