| 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"> | 5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"> |
| 6 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../js/resources/js-test-pre.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <p>Test computed style for the overflow property of select element</p> | 9 <p>Test computed style for the overflow property of select element</p> |
| 10 <div id="console"></div> | 10 <div id="console"></div> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 shouldBe("computedOverflowStyle('scroll', 'overflow-x')", "'scroll'"); | 45 shouldBe("computedOverflowStyle('scroll', 'overflow-x')", "'scroll'"); |
| 46 shouldBe("computedOverflowStyle('scroll', 'overflow-y')", "'scroll'"); | 46 shouldBe("computedOverflowStyle('scroll', 'overflow-y')", "'scroll'"); |
| 47 | 47 |
| 48 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-x')", "'scroll'"); | 48 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-x')", "'scroll'"); |
| 49 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-y')", "'scroll'"); | 49 shouldBe("computedInheritedOverflowStyle('inherit', 'overflow-y')", "'scroll'"); |
| 50 | 50 |
| 51 | 51 |
| 52 var successfullyParsed = true; | 52 var successfullyParsed = true; |
| 53 | 53 |
| 54 </script> | 54 </script> |
| 55 <script src="../../js/resources/js-test-post.js"></script> | |
| 56 </body> | 55 </body> |
| 57 </html> | 56 </html> |
| OLD | NEW |