OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <details id="d"> | 6 <details id="d"> |
7 <summary> | 7 <summary> |
8 <input type="button" value="button" id="buttonControl"> | 8 <input type="button" value="button" id="buttonControl"> |
9 <input type="text" value="text" id="textControl"> | 9 <input type="text" value="text" id="textControl"> |
10 <textarea value="textarea" id="textareaControl"></textarea> | 10 <textarea value="textarea" id="textareaControl"></textarea> |
(...skipping 24 matching lines...) Expand all Loading... |
35 shouldBeFalse("details.open"); | 35 shouldBeFalse("details.open"); |
36 clickOn("block"); | 36 clickOn("block"); |
37 shouldBeTrue("details.open"); | 37 shouldBeTrue("details.open"); |
38 details.style.display = "none"; | 38 details.style.display = "none"; |
39 } | 39 } |
40 | 40 |
41 | 41 |
42 </script> | 42 </script> |
43 </body> | 43 </body> |
44 </html> | 44 </html> |
OLD | NEW |