| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"> | |
| 6 <script src="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.js"></script> |
| 7 </head> | 6 </head> |
| 8 <body> | 7 <body> |
| 9 <p>Test computed style for the overflow property of select element</p> | 8 <p>Test computed style for the overflow property of select element</p> |
| 10 <div id="console"></div> | 9 <div id="console"></div> |
| 11 | 10 |
| 12 <div id="test"> | 11 <div id="test"> |
| 13 <select id="wut" name="wut" size="8"> | 12 <select id="wut" name="wut" size="8"> |
| 14 <option value="1">One</option> | 13 <option value="1">One</option> |
| 15 <option value="2">Two</option> | 14 <option value="2">Two</option> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 46 |
| 48 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-x')", "'scroll'"); | 47 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-x')", "'scroll'"); |
| 49 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-y')", "'scroll'"); | 48 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-y')", "'scroll'"); |
| 50 | 49 |
| 51 | 50 |
| 52 var successfullyParsed = true; | 51 var successfullyParsed = true; |
| 53 | 52 |
| 54 </script> | 53 </script> |
| 55 </body> | 54 </body> |
| 56 </html> | 55 </html> |
| OLD | NEW |