mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-08 11:02:18 +03:00
detection method to generate HTML documents - tests/REC/test-2.5-1.out tests/REC/test-8-1.out tests/REC/test-9.1-2.out tests/REC2/html.xml tests/XSLTMark/game.out tests/XSLTMark/html.out tests/XSLTMark/products.out tests/XSLTMark/xslbench1.out tests/XSLTMark/xslbench2.out tests/XSLTMark/xslbench3.out tests/general/bug-15-.out tests/general/bug-5-.out: updated a number of tests output accordingly Daniel
33 lines
492 B
Plaintext
33 lines
492 B
Plaintext
<html lang="en">
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
<title>Sales Results By Division</title>
|
|
</head>
|
|
<body><table border="1">
|
|
<tr>
|
|
<th>Division</th>
|
|
<th>Revenue</th>
|
|
<th>Growth</th>
|
|
<th>Bonus</th>
|
|
</tr>
|
|
<tr>
|
|
<td><em>North</em></td>
|
|
<td>10</td>
|
|
<td>9</td>
|
|
<td>7</td>
|
|
</tr>
|
|
<tr>
|
|
<td><em>West</em></td>
|
|
<td>6</td>
|
|
<td style="color:red">-1.5</td>
|
|
<td>2</td>
|
|
</tr>
|
|
<tr>
|
|
<td><em>South</em></td>
|
|
<td>4</td>
|
|
<td>3</td>
|
|
<td>4</td>
|
|
</tr>
|
|
</table></body>
|
|
</html>
|