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

Side by Side Diff: LayoutTests/fast/box-shadow/box-shadow-transformed.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" media="screen"> 4 <style type="text/css" media="screen">
5 .wrapper { 5 .wrapper {
6 width: 300px; 6 width: 300px;
7 height: 300px; 7 height: 300px;
8 -webkit-box-sizing: border-box; 8 -webkit-box-sizing: border-box;
9 padding: 100px; 9 padding: 100px;
10 margin: 20px; 10 margin: 20px;
(...skipping 12 matching lines...) Expand all
23 height: 100px; 23 height: 100px;
24 display: inline-block; 24 display: inline-block;
25 } 25 }
26 26
27 </style> 27 </style>
28 </head> 28 </head>
29 <body> 29 <body>
30 30
31 <p>The shadow should look identical relative to the box in each case.</p> 31 <p>The shadow should look identical relative to the box in each case.</p>
32 <div class="top wrapper"> 32 <div class="top wrapper">
33 <div class="box" style="box-shadow: 0 10px 20px black; -webkit-transform: sc ale(2, 1)"></div> 33 <div class="box" style="box-shadow: 0 10px 20px black; transform: scale(2, 1 )"></div>
34 </div> 34 </div>
35 35
36 <div class="top wrapper"> 36 <div class="top wrapper">
37 <div class="box" style="box-shadow: 0 10px 20px black; -webkit-transform: ro tate(45deg)"></div> 37 <div class="box" style="box-shadow: 0 10px 20px black; transform: rotate(45d eg)"></div>
38 </div> 38 </div>
39 39
40 <div class="wrapper"> 40 <div class="wrapper">
41 <div class="box" style="box-shadow: 0 10px 20px black; -webkit-transform: rotate(45deg) scale(1.7)"></div> 41 <div class="box" style="box-shadow: 0 10px 20px black; transform: rotate(4 5deg) scale(1.7)"></div>
42 </div> 42 </div>
43 43
44 <div class="wrapper"> 44 <div class="wrapper">
45 <div class="box" style="box-shadow: 0 10px 20px black; -webkit-transform: rotate(45deg) scale(0.8)"></div> 45 <div class="box" style="box-shadow: 0 10px 20px black; transform: rotate(4 5deg) scale(0.8)"></div>
46 </div> 46 </div>
47 47
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/borders/table-borders.html ('k') | LayoutTests/fast/box-shadow/scaled-box-shadow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698