Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /dom/nodes/moveBefore/object-crash-regression.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Object element moveBefore() regression test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<b id="p"><object>
<script>
test(t => {
// crash, due to an internal subframe count mechanism getting out of sync.
p.moveBefore(p.lastChild, p.firstChild);
}, "Moving an object element does not crash");
</script>