OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <script src="resources/polyfill.js"></script> | |
5 <script src="../resources/event-sender-util.js"></script> | 4 <script src="../resources/event-sender-util.js"></script> |
6 <script src="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.js"></script> |
7 | 6 |
8 <div id="host"></div> | 7 <div id="host"></div> |
9 <pre id="console"></pre> | 8 <pre id="console"></pre> |
10 | 9 |
11 <script> | 10 <script> |
12 function createBox(name) { | 11 function createBox(name) { |
13 var div = document.createElement('div'); | 12 var div = document.createElement('div'); |
14 div.style.width = '100px'; | 13 div.style.width = '100px'; |
(...skipping 19 matching lines...) Expand all Loading... |
34 | 33 |
35 shouldBe('box.offsetWidth', '114'); | 34 shouldBe('box.offsetWidth', '114'); |
36 shouldBe('box.offsetHeight', '114'); | 35 shouldBe('box.offsetHeight', '114'); |
37 | 36 |
38 var successfullyParsed = true; | 37 var successfullyParsed = true; |
39 </script> | 38 </script> |
40 | 39 |
41 <script src="../../js/resources/js-test-post.js"></script> | 40 <script src="../../js/resources/js-test-post.js"></script> |
42 </body> | 41 </body> |
43 </html> | 42 </html> |
OLD | NEW |