| Index: LayoutTests/fast/table/remove-anonymous-cell.html
|
| diff --git a/LayoutTests/fast/table/remove-anonymous-cell.html b/LayoutTests/fast/table/remove-anonymous-cell.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..609a9be3475d068196af1ed68baeccfd7b7cfde6
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/table/remove-anonymous-cell.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + window.onload = function() {
|
| + document.body.offsetTop;
|
| + document.getElementById('elm').style.display = 'table-cell';
|
| + }
|
| +</script>
|
| +<p>There should be a blue rectangle below.</p>
|
| +<table cellpadding="0" cellspacing="0">
|
| + <tr>
|
| + <td style="color:blue; background:blue;">AAAAAAAAAAAAAA</td>
|
| + </tr>
|
| + <tr>
|
| + <td id="elm" style="display:table-row; color:blue; background:blue;">AAAAAAAAAAAAAA</td>
|
| + </tr>
|
| +</table>
|
|
|