gecko-dev/layout/reftests/position-sticky/transformed-2-ref.html
Kartikaya Gupta 30277f6a9c Bug 1426386 - Add reftests for position:sticky items inside a transform. r=mstange
MozReview-Commit-ID: 8qNnWhg0zd9

--HG--
extra : rebase_source : 6ee5a308245560d6cb5149d235902b41dcbb7601
2018-01-22 12:00:31 -05:00

15 lines
496 B
HTML

<!DOCTYPE html>
<html style="margin: 0" class="reftest-wait">
<body style="margin: 0">
<div style="height: 70px; background-color: blue"></div>
<div style="height: 1950px;">
<div style="margin-top: 100px; width: 100px; height: 100px; background-color: green"></div>
</div>
<script>
addEventListener('load', function() {
document.scrollingElement.scrollTop = 50;
document.documentElement.classList.remove('reftest-wait');
}, false);
</script>
</html>