mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision d7afcb8708eac08a614d161d5622a48172daf7e3
This commit is contained in:
parent
6f8bb4dd40
commit
edff458e23
791 changed files with 17647 additions and 10322 deletions
|
@ -0,0 +1,46 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue