Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / overflow / theme-affects-visual-overflow.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .composited {
6     transform: translatez(0);
7 }
8 input {
9     position:relative;
10     width:15px;
11     height:15px;
12 }
13 span {
14     display:inline-block;
15     width:20px;
16 }
17 </style>
18 </head>
19 <body>
20 <div class="composited">
21     <!-- The form elements should be fully rendered, even though they render beyond their bounds -->
22     <input type="radio" id="r" />
23     <span></span>
24     <input type="checkbox" checked />
25 </div>
26 </body>
27 </html>