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

Side by Side Diff: LayoutTests/fast/backgrounds/mask-box-image.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .container { 4 .container {
5 display: inline-block; 5 display: inline-block;
6 border: 1px solid black; 6 border: 1px solid black;
7 margin: 20px; 7 margin: 20px;
8 } 8 }
9 9
10 .scaled { 10 .scaled {
11 -webkit-transform: scale(1.0001); 11 transform: scale(1.0001);
12 -webkit-transform-origin: top left; 12 -webkit-transform-origin: top left;
13 } 13 }
14 14
15 .box { 15 .box {
16 width: 100px; 16 width: 100px;
17 height: 100px; 17 height: 100px;
18 background-color: black; 18 background-color: black;
19 margin: 10px; 19 margin: 10px;
20 } 20 }
21 21
(...skipping 11 matching lines...) Expand all
33 <div class="container"> 33 <div class="container">
34 <div class="mask3 box"></div> 34 <div class="mask3 box"></div>
35 <div class="mask6 box"></div> 35 <div class="mask6 box"></div>
36 </div> 36 </div>
37 <div class="scaled container"> 37 <div class="scaled container">
38 <div class="mask3 box"></div> 38 <div class="mask3 box"></div>
39 <div class="mask6 box"></div> 39 <div class="mask6 box"></div>
40 </div> 40 </div>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698