Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: LayoutTests/fast/block/margin-left-margin-right-auto.html

Issue 793283002: Move recently landed align attribute tests to fast/block/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698