Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/crashtests/find-whole-word-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<div id="t"></div>
<script>
const filler = 'a'.repeat(122);
document.getElementById('t').textContent = filler + ' x';
window.find(filler + ' ', false, false, false, true, false, false);
</script>