Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / add-before-anonymous-child.html
blob130a78c5911f3b0e45df188aa3623ab8631ce0e7
1 <head>
2 <style>
3 tr { width: 100px; height: 100px; }
4 </style>
5 </head>
6 <body>
7 <p>
8 This tests for a regression against
9 <i><a href="https://bugs.webkit.org/show_bug.cgi?id=5868">http://bugzilla.opendarwin.org/show_bug.cgi?id=5868</a>
10 Crash on HP.com with ToT and Safari 2.0.2 in khtml::RenderContainer::detach()</i>.
11 </p>
12 <p>
13 There should be two 100x100 squares stacked vertically below.
14 The green square should be above the blue square.
15 </p>
16 <hr>
17 <table>
18 <tr style="display:none; background: green;" id="t">
19 </tr>
20 <tr style="display:block; background: blue;"></tr>
21 </table>
22 <script language="JavaScript">
23 document.getElementById('t').style.display = 'block';
24 </script>
25 </body>