chromium/third_party/blink/web_tests/fast/forms/search/search-scroll-hidden-decoration-container-crash.html

<!DOCTYPE html>
<script src="../../../resources/gesture-util.js"></script>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>

<style>
input::-webkit-textfield-decoration-container {
    display: none;
}
</style>
<input type="search">

<script>

promise_test(async () => {
    var input = document.createElement('input');
    var center = elementCenter(input);
    await wheelTick(0, -10, center);

}, "No crash when move the mouse over the input element and do a mouse wheel scroll.");
</script>