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

Side by Side Diff: LayoutTests/fast/box-shadow/single-pixel-shadow.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .box { 6 .box {
7 height: 4px; 7 height: 4px;
8 width: 4px; 8 width: 4px;
9 margin: 20px; 9 margin: 20px;
10 box-shadow: 0 0 1px black; 10 box-shadow: 0 0 1px black;
11 } 11 }
12 12
13 .scaled { 13 .scaled {
14 -webkit-transform-origin: -1px -1px; 14 -webkit-transform-origin: -1px -1px;
15 -webkit-transform: scale(20); 15 transform: scale(20);
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <body> 19 <body>
20 <div class="box"></div> 20 <div class="box"></div>
21 <div class="scaled box"></div> 21 <div class="scaled box"></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/box-shadow/scaled-box-shadow.html ('k') | LayoutTests/fast/box-shadow/transform-fringing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698