diff options
Diffstat (limited to 'tests/ref/float_table_a.html')
-rw-r--r-- | tests/ref/float_table_a.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/ref/float_table_a.html b/tests/ref/float_table_a.html new file mode 100644 index 00000000000..7c3517563eb --- /dev/null +++ b/tests/ref/float_table_a.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <meta charset="UTF-8"> + <style type="text/css"> + @font-face { + font-family: 'ahem'; + src: url(fonts/ahem/ahem.ttf); + } + body { + margin: 0; + } + table { + font-family: 'ahem'; + font-size: 100px; + color: red; + float: right; + line-height: 1; + } + td { + padding: 0; + } + </style> + </head> + <body> + <table> + <tbody> + <tr> + <td>X</td> + </tr> + </tbody> + </table> + </body> +</html> |