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

Side by Side Diff: LayoutTests/compositing/overflow/theme-affects-visual-overflow.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> 4 <style>
5 .composited { 5 .composited {
6 -webkit-transform: translatez(0); 6 transform: translatez(0);
7 } 7 }
8 input { 8 input {
9 position:relative; 9 position:relative;
10 width:15px; 10 width:15px;
11 height:15px; 11 height:15px;
12 } 12 }
13 span { 13 span {
14 display:inline-block; 14 display:inline-block;
15 width:20px; 15 width:20px;
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <body> 19 <body>
20 <div class="composited"> 20 <div class="composited">
21 <!-- The form elements should be fully rendered, even though they render bey ond their bounds --> 21 <!-- The form elements should be fully rendered, even though they render bey ond their bounds -->
22 <input type="radio" id="r" /> 22 <input type="radio" id="r" />
23 <span></span> 23 <span></span>
24 <input type="checkbox" checked /> 24 <input type="checkbox" checked />
25 </div> 25 </div>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698