blob: f5fb9f09ada10b77a5968ed06503ed4469392c24 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
<style>
input { background: red; }
</style>
</head>
<body>
<p>The following search field should have red background.</p>
<input type="search" id="test">
<script>
if (window.testRunner)
testRunner.dumpAsText(true);
var test = document.getElementById("test");
var color = 'rgb(255, 0, 0)';
shouldBe("getComputedStyle(test, null).getPropertyValue('background-color')", "color");
</script>
</body>
</html>