Update web-platform-tests to revision dc60bfc45b49e3a5e653320e65b0fd447676b836

This commit is contained in:
WPT Sync Bot 2018-06-04 21:06:39 -04:00
parent 652a177ff5
commit 0bc549be55
690 changed files with 6588 additions and 1564 deletions

View file

@ -0,0 +1,34 @@
<!DOCTYPE html>
<title>Reference for sticky hyperlink should work on high dpi devices</title>
<style>
body {
margin: 0;
}
.scroller {
overflow: scroll;
width: 200px;
height: 200px;
}
.positioned {
position: relative;
top: 100px;
}
.spacer {
height: 700px;
}
</style>
<script>
window.addEventListener('load', function() {
document.querySelector('.scroller').scrollTop = 100;
});
</script>
<div class='scroller'>
<a href='#' class='positioned'>Link</a>
<div class='spacer'></div>
</div>
<div>You should see a sticky link at the top of the scrollable area.</div>