blob: 45abb4554e86ddd649a2e9c4b651c5056b350749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<style>
input[type="search"]::-webkit-search-cancel-button {
display: none;
}
</style>
</head>
<body>
This tests that the display:none style will work on a search field's cancel button.<br>
<input type="search" value="test">
</body>
</html>
|