summaryrefslogtreecommitdiffstats
path: root/layout/reftests/abs-pos/table-caption-4.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/abs-pos/table-caption-4.html')
-rw-r--r--layout/reftests/abs-pos/table-caption-4.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/abs-pos/table-caption-4.html b/layout/reftests/abs-pos/table-caption-4.html
new file mode 100644
index 0000000000..47b4cc7bd3
--- /dev/null
+++ b/layout/reftests/abs-pos/table-caption-4.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ #rel {
+ position: relative;
+ margin: 2px;
+ padding: 0;
+ }
+ .fixed, .abs {
+ position: fixed;
+ margin: 0;
+ padding: 0;
+ top: 25px;
+ left: 25px;
+ width: 50px;
+ height: 50px;
+ background-color: green;
+ }
+ #bad {
+ background-color: red;
+ }
+ </style>
+ </head>
+ <body>
+ The green square should completely cover the red square.
+ <div class="abs" id="bad"></div>
+ <table>
+ <caption id="rel"><div class="fixed"></div></caption>
+ </table>
+ </body>
+</html>