ladybird/Tests/LibWeb/Crash/DOM/Window-find-code-units.html
Jelle Raaijmakers b42c2c5e8f LibWeb: Use code unit offsets in Document::find_matching_text()
We were passing in byte offsets instead of UTF-16 code unit offsets,
which could lead to crashes if the offsets found exceeded the number of
code units in text fragments on the page.

Fixes #4908.

Co-authored-by: Tim Ledbetter <tim.ledbetter@ladybird.org>
2025-06-13 15:08:26 +02:00

5 lines
59 B
HTML

<!DOCTYPE html>
😭a
<script>
window.find('a');
</script>