chromium/third_party/blink/web_tests/fast/forms/search/search-content-url-crash.html

<!doctype html>
<head>
<style>
input::-webkit-textfield-decoration-container {
    content: url("") !important;
}
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
</script>
</head>
<body>
<!-- [bug 101133] https://bugs.webkit.org/show_bug.cgi?id=101133 -->
<!-- Crash when replacing parts of text inputs with content: url(...) -->
<!-- If this test passes, we can see juast "PASS". -->
<input type="search">
PASS
</body>