Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / after-with-first-letter-float-crash.html
blobf11ce13e6a43b5be96e9ee2c40c2c1388fdb873d
1 <html>
2 <body>
3 <style type="text/css">
4 div::first-letter { float: right; content: "AB" }
5 div::after { display: table; content: "CD" }
6 </style>
7 <div></div>
8 PASS, if the script does not cause a crash or ASSERT failure
9 <script>
10 function runTest() {
11 document.body.offsetTop;
12 document.body.style.color = "blue";
13 if (window.testRunner)
14 testRunner.dumpAsText();
16 window.onload = runTest;
17 </script>
18 </body>
19 </html>