OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 <style> | 4 <style> |
5 div.box { | 5 div.box { |
6 display: -moz-box; | 6 display: -moz-box; |
7 display: -webkit-box; | 7 display: -webkit-box; |
8 display: box; | 8 display: box; |
9 } | 9 } |
10 | 10 |
11 div.outer { | 11 div.outer { |
12 width: 100px; | 12 width: 100px; |
13 height: 100px; | 13 height: 100px; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 shouldBe("element.offsetHeight", "100"); | 67 shouldBe("element.offsetHeight", "100"); |
68 shouldBe("element.offsetWidth", "100"); | 68 shouldBe("element.offsetWidth", "100"); |
69 | 69 |
70 debug("Submit"); | 70 debug("Submit"); |
71 element = document.getElementById("submit"); | 71 element = document.getElementById("submit"); |
72 shouldBe("element.offsetHeight", "100"); | 72 shouldBe("element.offsetHeight", "100"); |
73 shouldBe("element.offsetWidth", "100"); | 73 shouldBe("element.offsetWidth", "100"); |
74 </script> | 74 </script> |
75 </body> | 75 </body> |
76 </html> | 76 </html> |
OLD | NEW |