Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / reload-non-styled-element-crash.html
blob246dbb5f3b1995849167fe137ba5532893c2d129
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function start() {
6 document.body.innerHTML='<p>laserator<p>#f'
7 document.body.innerHTML = ''
8 var m = document.createElementNS('http://www.w3.org/1998/Math/MathML','free');
9 document.body.appendChild(m);
10 location.reload();
11 document.body.offsetTop;
12 document.body.innerHTML='PASS if no crash or assert in debug';
13 if (window.testRunner)
14 testRunner.dumpAsText();
16 </script>
17 </head>
18 <body onload='start()'></body>
19 </html>