Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/viewport-units-scrollbars-dynamic-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<meta name="assert" content="There is no horizontal overflow when 100vw is reduced by scrollbar width when the scrollbars are unconditional.">
<link rel="match" href="viewport-units-scrollbars-scroll-vw-001-ref.html">
<body style="margin: 0; padding: 0;">
<p>
Pass Condition: There is no horizontal overflow.
</p>
<div style="width: 100vw; height: 100px; background: orange;"></div>
<script>
document.body.offsetTop;
document.documentElement.style.overflowY = 'scroll';
</script>
</body>
</html>