1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/root-replace-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
490 B
HTML

<html>
<head>
<script>
document.addEventListener("DOMContentLoaded", async () => {
const tt = document.createElementNS("http://www.w3.org/1999/xhtml", "tt")
tt.popover = "manual"
const viewTransition = document.startViewTransition(undefined)
await viewTransition.updateCallbackDone
for (let i = 0; i < 2; i++) {
document.replaceChild(tt, document.childNodes[(2324524876 % document.childNodes.length)])
}
})
</script>
<head>
</html>