Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/selectors/pseudo-classes/checked.html

Issue 1144143009: W3C Test: Import web-platform-tests/html/semantics (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <title>Selector: pseudo-classes (:checked)</title>
4 <link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org" id=link1>
5 <link rel=help href="https://html.spec.whatwg.org/multipage/#pseudo-classes" id= link2>
6 <script src="../../../../../../resources/testharness.js"></script>
7 <script src="../../../../../../resources/testharnessreport.js"></script>
8 <script src="utils.js"></script>
9 <div id="log"></div>
10 <select id=select1>
11 <optgroup label="options" id=optgroup1>
12 <option value="option1" id=option1 selected>option1
13 <option value="option2" id=option2>option2
14 <option value="option2" id=option3 checked>option3
15 </select>
16 <input type=checkbox id=checkbox1 checked>
17 <input type=checkbox id=checkbox2>
18 <input type=checkbox id=checkbox3 selected>
19 <input type=radio id=radio1 checked>
20 <input type=radio id=radio2>
21 <form>
22 <p><input type=submit contextmenu=formmenu id="submitbutton"></p>
23 <menu type=popup id=formmenu>
24 <menuitem type=checkbox checked default id=menuitem1>
25 <menuitem type=checkbox default id=menuitem2>
26 <menuitem type=checkbox id=menuitem3>
27 <menuitem type=radio checked id=menuitem4>
28 <menuitem type=radio id=menuitem5>
29 </menu>
30 </form>
31
32 <script>
33 testSelector(":checked", ["option1", "checkbox1", "radio1", "menuitem1", "menu item4"], "':checked' matches checked <input>/<menuitem> in checkbox and radio bu tton states, selected <option>s");
34
35 document.getElementById("checkbox1").removeAttribute("type"); // change type of input
36 document.getElementById("radio1").removeAttribute("type"); // change type of input
37 testSelector(":checked", ["option1", "menuitem1", "menuitem4"], "':checked' sh ould no longer match <input>s whose type checkbox/radio has been removed");
38
39 document.getElementById("option2").selected = "selected"; // select option2
40 document.getElementById("checkbox2").click(); // check chekbox2
41 document.getElementById("radio2").click(); // check radio2
42 testSelector(":checked", ["option2", "checkbox2", "radio2", "menuitem1", "menu item4"], "':checked' matches clicked checkbox and radio buttons");
43 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698