Formatação HTML em texto QML

Eu tenho uma parte do código HTML, que exibe pequena tabela. No navegador, ele se parece com a imagem:

Mas quando eu quero exibi-lo emQML de texto (que, de acordo com a documentação, deve suportar HTML), vejo:

(O retângulo laranja faz parte do retângulo, pai demytext)

Text {
     id: mytext
     anchors.fill: parent
     text: "<div><table border='1'><caption><h4>Test stats</h4>"+
     "</caption><tr bgcolor='#9acd32'><th/><th>Number1</th><th>Number2</th></tr> <tr><th>Line1</th>"+
        "<td> 0 </td> <td> 1 </td> </tr> <tr><th>Line2</th> <td> 0 </td> <td> 1 </td> </tr>"+
        "<tr><th>Line3</th> <td> 0 </td> <td> 0 </td> </tr> <tr><th>Line4</th> <td> 1 </td> <td> 0 </td> </tr>"+
        "<tr><th>Line5</th> <td> 1 </td> <td> 1 </td> </tr> <tr><th>Line6</th> <td> 1 </td> <td> 1 </td> </tr> </div>"
}

Então, como exibir corretamente esta tabela HTML no QML (QtQuick 2.0)? É possível sem usar o WebView?

questionAnswers(1)

yourAnswerToTheQuestion