Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / reflections / remove-reflection-crash.html
blob59765eebfd0e0fc50c1526d7d4dc868ae3e94463
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
6 .box {
7 width: 100px;
8 height: 100px;
9 background-color: blue;
12 #reflected {
13 position: relative;
14 z-index: 0;
15 -webkit-box-reflect: below 10px;
18 .child {
19 position: absolute;
20 z-index: 1;
22 </style>
23 <script>
24 if (window.testRunner) {
25 testRunner.waitUntilDone();
26 testRunner.dumpAsText();
29 function doTest()
31 window.setTimeout(function() {
32 var reflection = document.getElementById('reflected');
33 var targetContainer = document.getElementById('container');
34 targetContainer.appendChild(reflection);
35 if (window.testRunner)
36 testRunner.notifyDone();
37 }, 0);
39 window.addEventListener('load', doTest, false);
40 </script>
41 </head>
42 <body>
43 <p>This test should not crash when run with MallocScribble enabled.</p>
44 <div id="reflected" class="box">
45 <div class="child box"></div>
46 </div>
47 <div id="container"></div>
48 </body>
49 </html>