script: When using WebRender, keep the DOM-side scroll positions for

elements with `overflow: scroll` up to date, and take them into account
when doing hit testing.

Closes #11648.
This commit is contained in:
Patrick Walton 2016-06-08 18:46:02 -07:00
parent ce88b8ed30
commit 041cfe6d0a
14 changed files with 259 additions and 47 deletions

View file

@ -0,0 +1,7 @@
<!DOCTYPE html>
<html style="overflow: scroll">
<body style="overflow: hidden; position: relative;">
<p>Scroll down...</p>
<p style="padding-top: 1200px"><a href="http://example.com">Mouse over me!</a></p>
</body>
</html>