blob: f9dea79c8646c1ef9f5137ba038999a817ae2135 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test.js"></script>
<style>
:valid { background: lime; }
:invalid { background: red; }
input { background: red; }
</style>
</head>
<body>
<p id="description"></p>
<form method="get">
<input name="victim" type="text" value="Lorem ipsum"/>
<input name="victim" type="text" value="Lorem ipsum" required/>
<input name="victim" type="text" value="Lorem ipsum" pattern="Lorem ipsum"/>
<input name="victim" type="submit">
<button name="victim"></button>
</form>
<div id="console"></div>
<script>
description("This test performs a check for the :valid CSS selector on various input and button elements.");
v = document.getElementsByName("victim");
for (i = 0; i < v.length; i++)
shouldBe("document.defaultView.getComputedStyle(v[i], null).getPropertyValue('background-color')", "'rgb(0, 255, 0)'");
</script>
</body>
</html>