| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 | 5 |
| 6 #spacer { | 6 #spacer { |
| 7 width: 1000px; | 7 width: 1000px; |
| 8 height: 1000px; | 8 height: 1000px; |
| 9 } | 9 } |
| 10 #container { | 10 #container { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 runTest({x: 700, y: 700, w: 280, h: 280}, {x: 410, y: 410}, {x: 680, y: 680}); | 78 runTest({x: 700, y: 700, w: 280, h: 280}, {x: 410, y: 410}, {x: 680, y: 680}); |
| 79 | 79 |
| 80 // Larger overlapping element scrolls to nearest edge when focused. | 80 // Larger overlapping element scrolls to nearest edge when focused. |
| 81 runTest({x: 10, y: 10, w: 320, h: 320}, {x: 320, y: 320}, {x: 30, y: 30}); | 81 runTest({x: 10, y: 10, w: 320, h: 320}, {x: 320, y: 320}, {x: 30, y: 30}); |
| 82 runTest({x: 670, y: 670, w: 320, h: 320}, {x: 380, y: 380}, {x: 670, y: 670}); | 82 runTest({x: 670, y: 670, w: 320, h: 320}, {x: 380, y: 380}, {x: 670, y: 670}); |
| 83 | 83 |
| 84 if (window.testRunner) | 84 if (window.testRunner) |
| 85 testRunner.dumpAsText(); | 85 testRunner.dumpAsText(); |
| 86 | 86 |
| 87 </script> | 87 </script> |
| 88 <script src="../js/resources/js-test-post.js"></script> | |
| 89 </body> | 88 </body> |
| 90 <html> | 89 <html> |
| OLD | NEW |