summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/inline-html.qml
blob: 701db41c144a63d6d0640ee34d8d67bce48770d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- Inline HTML with loose formatting can be
     set on the html property by using CDATA. -->
<WebView>
    <html><![CDATA[
        <body bgcolor="white">
        <table border=1>
            <tr><th><th>One<th>Two<th>Three
            <tr><th>1<td>X<td>1<td>X
            <tr><th>2<td>0<td>X<td>0
            <tr><th>3<td>X<td>1<td>X
        </table>
    ]]></html>
</WebView>