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

Side by Side Diff: LayoutTests/fast/css/clip-text-in-scaled-div.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 <style> 2 <style>
3 body { overflow: hidden; } 3 body { overflow: hidden; }
4 .scaled { 4 .scaled {
5 -webkit-transform:scale(2); 5 transform:scale(2);
6 -webkit-transform-origin: top left; 6 -webkit-transform-origin: top left;
7 } 7 }
8 .clip-text { 8 .clip-text {
9 background-color:red; 9 background-color:red;
10 -webkit-background-clip:text; 10 -webkit-background-clip:text;
11 -webkit-text-fill-color:transparent 11 -webkit-text-fill-color:transparent
12 } 12 }
13 </style> 13 </style>
14 <body> 14 <body>
15 <div class="scaled"> 15 <div class="scaled">
16 <span class="clip-text">This text should be nice and sharp.</span> 16 <span class="clip-text">This text should be nice and sharp.</span>
17 </div> 17 </div>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/annotated-regions.html ('k') | LayoutTests/fast/css/fixed-overlaps-absolute-in-clip.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698