author | Ian Kilpatrick <ikilpatrick@chromium.org> |
Fri, 01 Feb 2019 13:40:56 +0000 | |
changeset 458185 | bbc29fb3d0bf74fde45e99eb0a43b1f61551daa7 |
parent 458184 | 34865e88897289c24a6cfd1a04fc3373d7bbebcb |
child 458186 | 8458faca7e33dbc919ed65b29f4c4fc018ca91c0 |
push id | 35518 |
push user | opoprus@mozilla.com |
push date | Fri, 08 Feb 2019 09:55:14 +0000 |
treeherder | mozilla-central@3a3e393396f4 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1523562, 15053, 924504, 1434919, 626650 |
milestone | 67.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/tests/css/css-tables/no-overflow-with-table-cell-margins.html | file | annotate | diff | comparison | revisions |
new file mode 100644 --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/no-overflow-with-table-cell-margins.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> +<link rel="help" href="https://drafts.csswg.org/css-tables-3/"> +<meta name="assert" content="Table cell margins do not contribute to layout overflow."> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<style> +html { + display: table; + width: 100%; + height: 100%; +} +body { + display: table-cell; + width: 100%; +} +</style> +<body></body> +<script> + test(() => { + const scroller = document.scrollingElement; + + // There shouldn't be any layout overflow on the root scrollable element. + assert_equals(scroller.clientHeight, scroller.scrollHeight); + }); +</script>