[project @ 2002-04-25 15:53:07 by bursa]

Test HTML and CSS files.

svn path=/import/netsurf/; revision=9
This commit is contained in:
James Bursa 2002-04-25 15:53:07 +00:00
parent f5044a6d87
commit 895ff0b0c2
2 changed files with 42 additions and 0 deletions

24
render/test/test1.css Normal file
View File

@ -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%; }

18
render/test/test1.html Normal file
View File

@ -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>