Update web-platform-tests to revision 00fa50687cab43b660296389acad6cc48717f1d1

This commit is contained in:
WPT Sync Bot 2019-01-28 20:36:36 -05:00
parent 07d53e32c4
commit 28bbe1473c
58 changed files with 2119 additions and 360 deletions

View file

@ -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>