diff options
Diffstat (limited to 'layout/reftests/writing-mode/1147834-top-left-ref.html')
-rw-r--r-- | layout/reftests/writing-mode/1147834-top-left-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1147834-top-left-ref.html b/layout/reftests/writing-mode/1147834-top-left-ref.html new file mode 100644 index 0000000000..2b0914c6f9 --- /dev/null +++ b/layout/reftests/writing-mode/1147834-top-left-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Overconstrained relative positioning</title> + <style> + .test { + border: 1px solid black; + height: 200px; + width: 400px; + } + #inner1 { + position: relative; + left: 0px; + top: 0px; + height: 180px; + width: 360px; + background-color: teal; + } + </style> + </head> + <body> + <div class="test"> + <div id="inner1"></div> + </div> + </body> +</html> |