Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / anonymous-block-layer-lost.html
blob04b676211accaaf7f497809887ecde617bf185c0
1 <html>
2 <head>
3 <script>
4 function test()
6 var div = document.createElement("div");
7 document.body.appendChild(div);
8 document.body.removeChild(document.body.lastChild);
10 </script>
11 </head>
12 <body onload="test()">
13 <div style="display: inline-block; width: 100px; height: 100px; background: red;">
14 <div style="width: 100px; height: 100px; background: green; opacity: 0.9;">
15 </div>
16 </div>
17 </body>
18 </html>