diff options
Diffstat (limited to 'layout/reftests/bugs/1430869.html')
-rw-r--r-- | layout/reftests/bugs/1430869.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1430869.html b/layout/reftests/bugs/1430869.html new file mode 100644 index 0000000000..13842fe323 --- /dev/null +++ b/layout/reftests/bugs/1430869.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html><head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <meta charset="UTF-8"> + <title>Webrender table caption + border-collapse test</title> + <style> + table, th, td { + border: 1px solid; + border-collapse: collapse; + } + caption { + text-align: left; + } + </style> +</head> +<body> + +<div> +<table> +<caption>A<br>B</caption> +<tbody><tr> +<td>row 1</td> +</tr> +<tr> +<td>row 2</td> +</tr> +<tr> +<td>row 3</td> +</tr> +<tr> +<td>row 4</td> +</tr> +<tr> +<td>row 5</td> +</tr> +</tbody></table> +</div> + + +</body></html> |