Mypal/layout/reftests/bugs/364079-1-ref.html
2019-03-11 13:26:37 +03:00

16 lines
573 B
HTML

<!DOCTYPE html>
<html>
<style>
div { height: 20px; }
div > div { width: 100px; background: green; }
body > div { direction: ltr }
</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: 200px; margin-right: auto"></div></div>
<div><div style="margin-left: 100px; margin-right: 100px"></div></div>
</body>
</html>