Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / iframes / resources / enter-compositing-subframe.html
blob74a6932e6ffe6af12f9de7c94668318073d9b601
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body { background-color:silver }
8 .box {
9 height: 200px;
10 width: 200px;
11 margin: 10px;
12 padding: 5px;
13 background-color: blue;
16 .composited {
17 transform: translateZ(0);
20 </style>
21 <script type="text/javascript" charset="utf-8">
22 function doTest()
24 window.setTimeout(function() {
25 document.getElementById('test').className = 'composited box';
26 parent.testDone();
27 }, 50);
29 window.addEventListener('load', doTest, false);
30 </script>
31 </head>
32 <body>
34 <div id="test" class="box">
35 </div>
37 </body>
38 </html>