Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / remove-fixed-resizer-crash.html
blob4e67843c51681490a9f7d21a1dc1620012dc4586
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 height: 2000px;
9 *::-webkit-resizer { position: fixed; }
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
15 function doTest()
17 var svgElement = document.createElementNS("http://www.w3.org/2000/svg", "svg");
18 document.body.appendChild(svgElement);
19 window.scrollBy(0, 100);
21 window.addEventListener('load', doTest, false);
22 </script>
23 </head>
24 <body>
25 <p>This test should not crash</p>
26 <input>
27 </body>
28 </html>