haikuwebkit/LayoutTests/fast/forms/search/search-cancel-button-visibl...

25 lines
637 B
HTML

<!DOCTYPE html>
<html>
<body>
<p>This tests that the search cancel button renders when the field becomes read only (no change).</p>
<input type="search" id="search" value="search" style="width: 100px;">
<script>
if (window.testRunner)
testRunner.waitUntilDone();
var search = document.getElementById("search");
function makeFieldReadOnlyAndNotifyDone()
{
search.readOnly = true;
if (window.internals)
internals.updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks();
if (window.testRunner)
testRunner.notifyDone();
}
window.setTimeout(makeFieldReadOnlyAndNotifyDone, 0);
</script>
</body>
</html>