| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body style="margin:0"> | 6 <body style="margin:0"> |
| 7 <div id="overflow" dir="rtl" style="border:2px solid black;overflow:auto;height:
400px;width:400px; position:absolute;"> | 7 <div id="overflow" dir="rtl" style="border:2px solid black;overflow:auto;height:
400px;width:400px; position:absolute;"> |
| 8 <div style="background-color:red;height:720px"></div> | 8 <div style="background-color:red;height:720px"></div> |
| 9 <div style="background-color:green;height:1600px"></div> | 9 <div style="background-color:green;height:1600px"></div> |
| 10 </div> | 10 </div> |
| 11 | 11 |
| 12 <script> | 12 <script> |
| 13 description('Test that we can scroll down an RTL element with its left-side scro
llbar.'); | 13 description('Test that we can scroll down an RTL element with its left-side scro
llbar.'); |
| 14 | 14 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 26 } | 26 } |
| 27 | 27 |
| 28 function finished() | 28 function finished() |
| 29 { | 29 { |
| 30 shouldBeTrue('document.getElementById(\'overflow\').scrollTop > scrollTop'); | 30 shouldBeTrue('document.getElementById(\'overflow\').scrollTop > scrollTop'); |
| 31 window.testRunner.notifyDone(); | 31 window.testRunner.notifyDone(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 var successfullyParsed = true; | 34 var successfullyParsed = true; |
| 35 </script> | 35 </script> |
| 36 <script src="../../../../fast/js/resources/js-test-post.js"></script> | 36 <script src="../js/resources/js-test-post.js"></script> |
| 37 </body> | 37 </body> |
| 38 </html> | 38 </html> |
| OLD | NEW |