Chromium Code Reviews| 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..0fdd48d08f8838088006b1c2517fd01a563b5001 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> |
|
rune
2016/01/22 01:21:09
Nit: double space after id="td1" and extraneous sp
nainar
2016/01/22 02:01:07
Done.
|
| </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"); |