forked from mirrors/gecko-dev
Automatic update from web-platform-tests [LayoutNG] Add the "simplified" layout pass. This introduces the simplified layout algorithm. This is triggered when - An OOF descendant has its constraints changed. - The block-size of a fragment changes in size. There are several nuanced details with this algorithm. E.g. determining the correct static position for an OOF descendant. Bug: 635619 Change-Id: Iba4c4b82edf873fa4cad9ba28e9fa3849a4a8e8e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1590237 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by: Koji Ishii <kojii@chromium.org> Reviewed-by: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#659745} -- wp5At-commits: 20b091dca60176b03c6c6cd8466619dd9cf370e2 wpt-pr: 16738
46 lines
1,015 B
HTML
46 lines
1,015 B
HTML
<!DOCTYPE html>
|
|
<html class='reftest-wait'>
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
|
|
<link rel="help" href="https://www.w3.org/TR/css-position-3/" />
|
|
<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>
|