| OLD | NEW |
| 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> |
| OLD | NEW |