| -moz-box-sizing: border-box; |
| background-color: orange; |
| <p id="description">All of the boxes should be 80x30 and look identical.</p> |
| <div id="expected" class="styledForTest"></div> |
| <div id="div-display-table-cell" class="styledForTest" style="display: table-cell;"></div> |
| <td id="td" class="styledForTest"></td> |
| <script src="../../resources/js-test-pre.js"></script> |
| description('Tests that display: table-cell and box-sizing: border-box work when used together.'); |
| ['div-display-table-cell', 'td'].forEach(function (id) { |
| element = document.querySelector('#' + id); |
| shouldBe('element.offsetWidth', '80'); |
| shouldBe('element.offsetHeight', '30'); |
| <script src="../../resources/js-test-post.js"></script> |