Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-nesting/implicit-parent-insertion-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<title>Use-after-free when inserting implicit parent selector</title>
<style>
:root {
:lang(en), :lang(en) {
}
}
</style>
<div lang="en"></div>
<script>
// Allocate a large chunk of memory, to trigger a GC.
new Int32Array(536870911);
</script>