Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / overflow / theme-affects-visual-overflow.html
blob63e6606a322b9e243d2f0b4815077ee36be3f55c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .composited {
6 transform: translatez(0);
8 input {
9 position:relative;
10 width:15px;
11 height:15px;
13 span {
14 display:inline-block;
15 width:20px;
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>