Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-position/position-absolute-dynamic-overflow-002.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html class='reftest-wait'>
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="This test checks that scrollbars dissappear when an absolute positioned element no longer triggers overflow."/>
<script src="/common/reftest-wait.js"></script>
<style>
#scrollable {
  width: 100px;
  overflow: auto;
}
#container {
  width: 100px;
  height: 50px;
  position: relative;
  background: green;
}
#target {
  position: absolute;
  width: 50px;
  height: 20px;
  left: 200px;
}
#green {
  width: 100px;
  height: 50px;
  background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="scrollable">
  <div id="container">
    <div id="target"></div>
  </div>
</div>
<div id="green"></div>
<script>
document.body.offsetTop;
const target = document.getElementById('target');
target.style.left = 'initial';
document.body.offsetTop;
takeScreenshot();
</script>