diff options
Diffstat (limited to 'layout/reftests/table-html/bug1379306-3.html')
-rw-r--r-- | layout/reftests/table-html/bug1379306-3.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/table-html/bug1379306-3.html b/layout/reftests/table-html/bug1379306-3.html new file mode 100644 index 0000000000..966d03946d --- /dev/null +++ b/layout/reftests/table-html/bug1379306-3.html @@ -0,0 +1,23 @@ +<!DOCTYPE HTML> +<title>Testcase, bug 1379306</title> +<style> + +table { background: yellow } +td { height: 50px; width: 200px; background: aqua; } +div { background: fuchsia; height: 10px; width: 20px } + +tbody { position: relative; border: 10px solid blue } +div { position: absolute; top: 0; left: 0 } + +</style> +<h1>Table Row Group Testcase, bug 1379306</h1> + +<table> + <tbody> + <tr> + <td> + <div></div> + </td> + </tr> + </tbody> +</table> |