mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Update web-platform-tests to revision 4adce83d1f2b08fa2e92427c4687d0cf535aee53
This commit is contained in:
parent
d3763452b5
commit
3e4ec1724a
102 changed files with 3019 additions and 1309 deletions
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-scroll-anchoring/">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<style>
|
||||
|
||||
#expander {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#no {
|
||||
overflow-anchor: none;
|
||||
}
|
||||
#spacing {
|
||||
margin-bottom: 300vh;
|
||||
}
|
||||
|
||||
</style>
|
||||
<span>out of view</span>
|
||||
<div id="expander"></div>
|
||||
<span id="no">excluded subtree <span>[nested inline]</span></span>
|
||||
<div id="spacing"></div>
|
||||
<script>
|
||||
|
||||
// Tests that an inline element can be an excluded subtree.
|
||||
|
||||
test(() => {
|
||||
scrollTo(0, 50);
|
||||
document.querySelector('#expander').style = "margin-bottom: 100px";
|
||||
assert_equals(document.scrollingElement.scrollTop, 50,
|
||||
"Scroll anchoring should not anchor within the span.");
|
||||
scrollTo(0, 0);
|
||||
});
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue