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