tenfourfox/layout/reftests/bugs/364079-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
573 B
HTML

<!DOCTYPE html>
<html>
<style>
div { height: 20px; }
div > div { width: 100px; background: green; }
body > div { direction: rtl }
</style>
<body style="width: 400px">
<div><div style="margin-left: 100px; margin-right: auto"></div></div>
<div><div style="margin-left: auto; margin-right: 100px"></div></div>
<div><div style="margin-left: auto; margin-right: auto"></div></div>
<div><div style="margin-left: 100px; margin-right: 100px"></div></div>
<div><div style="margin-left: 100px; margin-right: auto"></div></div>
</body>
</html>