Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom-view/scroll-overflow-clip-quirks-002.html - WPT Dashboard Interop Dashboard
<!-- quirks -->
<title>CSSOM scrollingElement reflects the propagated scroll to viewport correctly</title>
<meta charset="utf-8">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
body {
overflow: clip;
}
</style>
<script>
test(function() {
assert_equals(document.scrollingElement, document.body);
});
</script>