diff options
Diffstat (limited to 'layout/reftests/bugs/364079-1.html')
-rw-r--r-- | layout/reftests/bugs/364079-1.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/bugs/364079-1.html b/layout/reftests/bugs/364079-1.html new file mode 100644 index 0000000000..f123d6f539 --- /dev/null +++ b/layout/reftests/bugs/364079-1.html @@ -0,0 +1,15 @@ +<!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> |