Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / remove-anonymous-cell.html
blob609a9be3475d068196af1ed68baeccfd7b7cfde6
1 <!DOCTYPE html>
2 <script>
3 window.onload = function() {
4 document.body.offsetTop;
5 document.getElementById('elm').style.display = 'table-cell';
7 </script>
8 <p>There should be a blue rectangle below.</p>
9 <table cellpadding="0" cellspacing="0">
10 <tr>
11 <td style="color:blue; background:blue;">AAAAAAAAAAAAAA</td>
12 </tr>
13 <tr>
14 <td id="elm" style="display:table-row; color:blue; background:blue;">AAAAAAAAAAAAAA</td>
15 </tr>
16 </table>