Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / first-line-parent-style-different.html
blob1704fd27a480eb07375892ce699387e8283f306e
1 <style>
2 #dummy:nth-child(3) { }
3 #container:first-line { color: blue; }
4 </style>
5 <p>
6 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=45344">https://bugs.webkit.org/show_bug.cgi?id=45344</a>
7 Null deref in InlineBox::height()</i>.
8 </p>
9 <p>
10 This test should not crash.
11 </p>
12 <div contentEditable>
13 <img id="dummy">
14 <div id="container"><span id="target"><br></span></div>
15 </div>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 document.getElementById("container").parentNode.focus();
20 </script>