summaryrefslogtreecommitdiff
path: root/legacy/works/float-nested-table.html
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/works/float-nested-table.html')
-rw-r--r--legacy/works/float-nested-table.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/legacy/works/float-nested-table.html b/legacy/works/float-nested-table.html
new file mode 100644
index 0000000..40ca6d3
--- /dev/null
+++ b/legacy/works/float-nested-table.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+ <title>Floated table with auto margins</title>
+ <style type="text/css"> table { margin: auto; }</style>
+ </head>
+<body>
+ <p> This page should not cause NetSurf to crash </p>
+ <table>
+ <tr>
+ <td>
+ <table align="right">
+ <tr>
+ <td>
+ <table align="right">
+ <tr>
+ <td>Some text</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+</body>
+</html>