| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Transformed resize corner tracking</title> | 3 <title>Transformed resize corner tracking</title> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function resize() | 5 function resize() |
| 6 { | 6 { |
| 7 eventSender.mouseMoveTo(185, 233); | 7 eventSender.mouseMoveTo(185, 233); |
| 8 eventSender.mouseDown(); | 8 eventSender.mouseDown(); |
| 9 eventSender.mouseMoveTo(185, 260); | 9 eventSender.mouseMoveTo(185, 260); |
| 10 eventSender.mouseUp(); | 10 eventSender.mouseUp(); |
| 11 } | 11 } |
| 12 function test() | 12 function test() |
| 13 { | 13 { |
| 14 if (!window.testRunner) | 14 if (!window.testRunner) |
| 15 return; | 15 return; |
| 16 | 16 |
| 17 resize(); | 17 resize(); |
| 18 } | 18 } |
| 19 </script> | 19 </script> |
| 20 <style> | 20 <style> |
| 21 iframe { | 21 iframe { |
| 22 -webkit-transform: rotate(20deg); | 22 transform: rotate(20deg); |
| 23 margin: 50px; | 23 margin: 50px; |
| 24 } | 24 } |
| 25 </style> | 25 </style> |
| 26 </head> | 26 </head> |
| 27 <body onload="test()"> | 27 <body onload="test()"> |
| 28 <hr> | 28 <hr> |
| 29 <p> | 29 <p> |
| 30 Test for | 30 Test for |
| 31 <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9221">https://bugs.w
ebkit.org/show_bug.cgi?id=9221</a> | 31 <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9221">https://bugs.w
ebkit.org/show_bug.cgi?id=9221</a> |
| 32 resize property doesn't work on iframes</i>. | 32 resize property doesn't work on iframes</i>. |
| 33 </p> | 33 </p> |
| 34 <hr> | 34 <hr> |
| 35 <iframe id="iframe" style="resize: both; width: 150px; height: 100px; border
: blue 2px solid;"></iframe> | 35 <iframe id="iframe" style="resize: both; width: 150px; height: 100px; border
: blue 2px solid;"></iframe> |
| 36 | 36 |
| 37 </body> | 37 </body> |
| OLD | NEW |