Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/scrollbar-gutter-zero-width-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: zero-width scroller with scrollbar-gutter should not crash</title>
<link rel="author" title="Jason Leo" href="mailto:cgqaq@chromium.org">
<style>
#target {
overflow: auto;
scrollbar-gutter: stable both-edges;
width: 0;
}
</style>
<div id="target"></div>
<script>
target.scrollTop;
</script>