Tests: Re-import disabled WPT crash tests in Text/ directory

We've had proper support for crash tests, so these can go where they
belong.
This commit is contained in:
Sam Atkins
2026-01-08 17:07:16 +00:00
committed by Andreas Kling
parent 08d2776860
commit 4a4c439ffe
Notes: github-actions[bot] 2026-01-09 07:12:47 +00:00
6 changed files with 2 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
<!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>