blob: 4acb41764f8e440da92df202a84d0b2772ff8d6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!-- Inline xHTML (with strict XML formatting) can be
set on the html property by giving it the appropriate namespace. -->
<WebView>
<html xmlns="http://www.w3.org/1999/xhtml">
<body bgcolor="white">
<table border="1">
<tr><th></th><th>One</th><th>Two</th><th>Three</th></tr>
<tr><th>1</th><td>X</td><td>1</td><td>X</td></tr>
<tr><th>2</th><td>0</td><td>X</td><td>0</td></tr>
<tr><th>3</th><td>X</td><td>1</td><td>X</td></tr>
</table>
</body>
</html>
</WebView>
|