1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../../resources/js-test.js"></script>
6 :invalid { background: lime; }
7 :valid { background: red; }
8 input { background: red; }
12 <p id=
"description"></p>
14 <input name=
"victim" type=
"text" required
/>
15 <input name=
"victim" type=
"text" value=
"Loremipsum" pattern=
"Lorem ipsum"/>
17 <div id=
"console"></div>
19 description("This test performs a check for the :invalid CSS selector on various input elements.");
21 v
= document
.getElementsByName("victim");
23 for (i
= 0; i
< v
.length
; i
++)
24 shouldBe("document.defaultView.getComputedStyle(v[i], null).getPropertyValue('background-color')", "'rgb(0, 255, 0)'");