chromium/third_party/blink/web_tests/fast/forms/search/abspos-cancel-button-crash.html

<!DOCTYPE html>
<style>
    #elm::-webkit-search-cancel-button { position: absolute; }
</style>
<input id="elm" type="search" value="How's Annie?">
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script>
test(() => {
    elm.focus();
}, "No crash or assertion failure.");
</script>