diff options
Diffstat (limited to 'layout/reftests/abs-pos/table-internal-8-ref.html')
-rw-r--r-- | layout/reftests/abs-pos/table-internal-8-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/abs-pos/table-internal-8-ref.html b/layout/reftests/abs-pos/table-internal-8-ref.html new file mode 100644 index 0000000000..3bff829deb --- /dev/null +++ b/layout/reftests/abs-pos/table-internal-8-ref.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> + <head> + <style> + #good { + background-color: green; + } + .abs { + position: fixed; + margin: 0; + padding: 0; + top: 25px; + left: 25px; + width: 50px; + height: 50px; + background-color: green; + } + </style> + </head> + <body> + The green square should completely cover the red square. + <div class="abs" id="good"></div> + </body> +</html> |