| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <head> | 2 <head> |
| 3 <title>Canvas test: drawSystemFocusRing</title> | 3 <title>Canvas test: drawSystemFocusRing</title> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body style="padding: 0; margin: 0"> | 6 <body style="padding: 0; margin: 0"> |
| 7 <canvas id="canvas" class="output" width="300" height="350"> | 7 <canvas id="canvas" class="output" width="300" height="350"> |
| 8 <button id="button1"></button> | 8 <button id="button1"></button> |
| 9 <div id="container"> | 9 <div id="container"> |
| 10 <button id="button2"></button> | 10 <button id="button2"></button> |
| 11 </div> | 11 </div> |
| 12 </canvas> | 12 </canvas> |
| 13 <script> | 13 <script> |
| 14 if (window.testRunner) | 14 if (window.testRunner) |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 shouldBe("axContainer.y", "200"); | 47 shouldBe("axContainer.y", "200"); |
| 48 shouldBe("axContainer.width", "200"); | 48 shouldBe("axContainer.width", "200"); |
| 49 shouldBe("axContainer.height", "100"); | 49 shouldBe("axContainer.height", "100"); |
| 50 | 50 |
| 51 shouldBe("axButton2.x", "50"); | 51 shouldBe("axButton2.x", "50"); |
| 52 shouldBe("axButton2.y", "200"); | 52 shouldBe("axButton2.y", "200"); |
| 53 shouldBe("axButton2.width", "200"); | 53 shouldBe("axButton2.width", "200"); |
| 54 shouldBe("axButton2.height", "100"); | 54 shouldBe("axButton2.height", "100"); |
| 55 </script> | 55 </script> |
| 56 </body> | 56 </body> |
| OLD | NEW |