deps: Upgrade to latest version of our downstream WebRender fork (0.67) (#36770)

Signed-off-by: Martin Robinson <mrobinson@igalia.com>

Fixes: #36717.
Testing: This is covered by existing tests.

Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
Martin Robinson 2025-05-01 13:16:41 +02:00 committed by GitHub
parent d1f7a90619
commit b10fc49e8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 35 additions and 25 deletions

View file

@ -7833,6 +7833,13 @@
{}
]
],
"iframe-hit-test-during-load-event-crash.html": [
"f668fc51573647e633fc3ac6430735d6fb4dfea7",
[
null,
{}
]
],
"iframe-loading-lazy-simple-crash.html": [
"b0b251438f73811ce2ec4d82fe47ffb3a2445c93",
[

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<div style="visibility: hidden;">
<iframe id="iframe"></iframe>
</div>
<script>
window.addEventListener("load", _ =>
iframe.contentDocument.elementFromPoint(0, 0)
);
</script>