summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/test/test1.css24
-rw-r--r--render/test/test1.html18
2 files changed, 42 insertions, 0 deletions
diff --git a/render/test/test1.css b/render/test/test1.css
new file mode 100644
index 000000000..dbff4a8b9
--- /dev/null
+++ b/render/test/test1.css
@@ -0,0 +1,24 @@
+html { font-size: medium }
+
+address, blockquote, body, dd, div,
+dl, dt, fieldset, form,
+h1, h2, h3, h4, h5, h6, html,
+object, ol, p, ul
+hr, menu, pre { display: block }
+a, abbr, acronym, b, code
+em, i, q, s, strong, u,
+var { display: inline }
+li { display: list-item }
+head { display: none }
+table { display: table }
+tr { display: table-row }
+thead { display: table-header-group }
+tbody { display: table-row-group }
+tfoot { display: table-footer-group }
+col { display: table-column }
+colgroup { display: table-column-group }
+td, th { display: table-cell }
+caption { display: table-caption }
+
+div { float: left; width: 90%; }
+
diff --git a/render/test/test1.html b/render/test/test1.html
new file mode 100644
index 000000000..50e98cc3b
--- /dev/null
+++ b/render/test/test1.html
@@ -0,0 +1,18 @@
+<html>
+<head>
+<title>Title</title>
+</head>
+
+<body>
+
+<h1>Heading</h1>
+
+<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque <b>habitant <i>Morbi</i></b> tristique Senectus et Metus et malesuada Fames ac turpis Egestas. (This paragraph has no closing tag.)<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; <b>Pellentesque</b> habitant Morbi tristique Senectus et Metus et malesuada Fames ac turpis Egestas.</p>
+
+<table><tr><td>Cell 1</td><td>Cell 2<p>More cell 2</p></td></tr>
+<tr><td>Cell 3</td><td>Cell 4</td></tr></table>
+
+<p>Inline text <div>containing a block</div> and more text.</p>
+
+</body>
+</html>