1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-07 10:42:55 +03:00
Files
libxslt/tests/XSLTMark/html.ref
Daniel Veillard fb0a57cf03 Jumbo patch, extended regression tests and fixed regression results:
- configure.in tests/Makefile.am tests/XSLTMark/* tests/multiple:
  added the XSLTMark in the regression tests as well as multiple
  output test from Ankh
- libxslt/functions.c libxslt/keys.c libxslt/transform.c
  libxslt/variables.c libxslt/xsltutils.c: applied William M. Brack
  patches and fixed a memory leak
- tests/docbook/result/html/*.html : updated the results after
  William's patch
- tests/xmlspec/REC-xml-20001006-review.html
  tests/xmlspec/REC-xml-20001006.html: libxml now don't invent
  an HTML doctype when serializing HTML result, but adds the
  encoding in ALT
Daniel
2001-04-02 15:13:28 +00:00

77 lines
466 B
Plaintext

<html lang="en">
<head>
<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>