Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985

This commit is contained in:
Josh Matthews 2017-10-31 08:58:31 -04:00
parent 43a4f01647
commit 64e0a52537
12717 changed files with 59835 additions and 59820 deletions

View file

@ -0,0 +1,44 @@
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
body {
height: 1200px;
}
#header {
position: relative;
height: 100px;
}
#evil {
position: relative;
top: -900px;
height: 1000px;
width: 100px;
}
#changer {
height: 100px;
}
#anchor {
height: 100px;
background-color: green;
}
</style>
<div id="header">
<div id="evil"></div>
</div>
<div id="changer"></div>
<div id="anchor"></div>
<script>
// Tests that the anchor selection algorithm correctly accounts for negative
// positioning when computing bounds for visibility.
test(() => {
document.scrollingElement.scrollTop = 250;
document.querySelector("#changer").style.height = "200px";
assert_equals(document.scrollingElement.scrollTop, 350);
}, "Anchor selection accounts for negative positioning.");
</script>