summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@digia.com>2013-06-03 18:36:01 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-03 18:50:44 +0200
commita4db690e3d09d2341b101557fa2875423db192d2 (patch)
treefddbecf1d8f91eb2db135579a3ee35487dd4ba3a
parent40450c35602616902b00cb3ca0681ce32d10c726 (diff)
downloadqtwebkit-examples-a4db690e3d09d2341b101557fa2875423db192d2.tar.gz
Fix the html output of the QObjectXmlModel example.
Added a title to the XQuery file to prevent generating an invalid self-closing title tag in the html output. Task-number: QTBUG-31525 Change-Id: Ieef162ebc9a89028b7cde81d0b42c649232488c7 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
-rw-r--r--examples/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq b/examples/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq
index 14a7a14..8d5dcb2 100644
--- a/examples/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq
+++ b/examples/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq
@@ -1,6 +1,6 @@
<html>
<head>
- <title></title>
+ <title>Generated statistics</title>
</head>
<body>
<p>In total the tree has {count($root//QObject)} QObject instances.</p>