mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
A few are skipped for now: - A few ref tests fail - Crash tests are not supported by our runner and time out - top-level-is-scope.html crashes and needs further investigation
17 lines
327 B
HTML
17 lines
327 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<title>Use-after-free when inserting implicit parent selector</title>
|
|
<link rel="help" href="https://crbug.com/1380313">
|
|
<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>
|
|
|