| Index: third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html b/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html
|
| index 0750ad93295021108e83b719fdd6f9b1318419c7..1496546767cefcd347958ea56e150b3768473aa9 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html
|
| @@ -4,7 +4,7 @@
|
| <table id="table" style="display:inline">
|
| <thead id="thead" style="display:inline-table">
|
| <tr id="tr1" style="display:inline-block">
|
| - <td id="td1"></td>
|
| + <td id="td1" style="display:block; float:left"></td>
|
| </tr>
|
| </thead>
|
| <tbody id="tbody" style="display:block">
|
| @@ -18,7 +18,8 @@ test(function() {
|
| assert_equals(getComputedStyle(table).display, "inline");
|
| assert_equals(getComputedStyle(thead).display, "inline-table");
|
| assert_equals(getComputedStyle(tr1).display, "inline-block");
|
| - assert_equals(getComputedStyle(td1).display, "table-cell");
|
| + assert_equals(getComputedStyle(td1).display, "block");
|
| + assert_equals(getComputedStyle(td1).float, "left");
|
| assert_equals(getComputedStyle(tbody).display, "block");
|
| assert_equals(getComputedStyle(tr2).display, "table");
|
| assert_equals(getComputedStyle(tr3).display, "table-row-group");
|
|
|