OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description">This tests the parsing and retrieval of the overflow, overfl
ow-x and overflow-y properties.</p> | 7 <p id="description">This tests the parsing and retrieval of the overflow, overfl
ow-x and overflow-y properties.</p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 | 9 |
10 <div id="tests_container"> | 10 <div id="tests_container"> |
11 | 11 |
12 <div id="test0" style="overflow: auto"></div> | 12 <div id="test0" style="overflow: auto"></div> |
13 <div id="test1" style="overflow: auto auto"></div> | 13 <div id="test1" style="overflow: auto auto"></div> |
14 <div id="test2" style="overflow-x: scroll; overflow-y: scroll"></div> | 14 <div id="test2" style="overflow-x: scroll; overflow-y: scroll"></div> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 shouldBeEqualToString("test9.style.overflowY", "-webkit-paged-y"); | 66 shouldBeEqualToString("test9.style.overflowY", "-webkit-paged-y"); |
67 shouldBeEqualToString("test10.style.overflowX", "visible"); | 67 shouldBeEqualToString("test10.style.overflowX", "visible"); |
68 shouldBeEqualToString("test10.style.overflowY", "-webkit-paged-y"); | 68 shouldBeEqualToString("test10.style.overflowY", "-webkit-paged-y"); |
69 | 69 |
70 // clean up after ourselves | 70 // clean up after ourselves |
71 var tests_container = document.getElementById("tests_container"); | 71 var tests_container = document.getElementById("tests_container"); |
72 tests_container.parentNode.removeChild(tests_container); | 72 tests_container.parentNode.removeChild(tests_container); |
73 </script> | 73 </script> |
74 </body> | 74 </body> |
75 </html> | 75 </html> |
OLD | NEW |