| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <style> | 3 <style> |
| 4 div>div{background:lime;width:100px;height:20px;border:1px solid green} | 4 div>div{background:lime;width:100px;height:20px;border:1px solid green} |
| 5 </style> | 5 </style> |
| 6 | 6 |
| 7 <script src="../../resources/js-test.js"></script> | 7 <script src="../../resources/js-test.js"></script> |
| 8 | 8 |
| 9 <body style="width:700px;margin:0px"> | 9 <body style="width:700px;margin:0px"> |
| 10 | 10 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 shouldBe("rtl_ml_in_rtl_l.getBoundingClientRect().right","700"); | 93 shouldBe("rtl_ml_in_rtl_l.getBoundingClientRect().right","700"); |
| 94 shouldBe("ltr_ml_in_rtl_l.getBoundingClientRect().right","700"); | 94 shouldBe("ltr_ml_in_rtl_l.getBoundingClientRect().right","700"); |
| 95 | 95 |
| 96 rtl_mr_in_rtl_l = document.getElementById("rtl_mr_in_rtl_l"); | 96 rtl_mr_in_rtl_l = document.getElementById("rtl_mr_in_rtl_l"); |
| 97 ltr_mr_in_rtl_l = document.getElementById("ltr_mr_in_rtl_l"); | 97 ltr_mr_in_rtl_l = document.getElementById("ltr_mr_in_rtl_l"); |
| 98 shouldBe("rtl_mr_in_rtl_l.getBoundingClientRect().left","0"); | 98 shouldBe("rtl_mr_in_rtl_l.getBoundingClientRect().left","0"); |
| 99 shouldBe("ltr_mr_in_rtl_l.getBoundingClientRect().left","0"); | 99 shouldBe("ltr_mr_in_rtl_l.getBoundingClientRect().left","0"); |
| 100 </script> | 100 </script> |
| 101 | 101 |
| 102 </body> | 102 </body> |
| OLD | NEW |