Bug 304147
| Summary: | onscrollend not supported on VisualViewport | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Barry Pollard <barry> |
| Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | Normal | CC: | ahmad.saleem792, herr.ernst |
| Priority: | P2 | ||
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Barry Pollard
Scrollend was implemented in https://bugs.webkit.org/show_bug.cgi?id=201556 but as noted in https://bugs.webkit.org/show_bug.cgi?id=201556#c16 it doesn't seem to be supported on VisualViewport as the spec says it should be: https://drafts.csswg.org/cssom-view/#eventdef-document-scrollend
Safari 26.2:
> 'onscrollend' in HTMLElement.prototype
< true
> 'onscrollend' in Document.prototype
< true
> 'onscrollend' in VisualViewport.prototype
< false
Chrome 143:
> 'onscrollend' in HTMLElement.prototype;
< true
> 'onscrollend' in Document.prototype;
< true
> 'onscrollend' in VisualViewport.prototype;
< true
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Ahmad Saleem
*** This bug has been marked as a duplicate of bug 300493 ***