summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/test3.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qmltests/data/test3.html')
-rw-r--r--tests/auto/quick/qmltests/data/test3.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/quick/qmltests/data/test3.html b/tests/auto/quick/qmltests/data/test3.html
new file mode 100644
index 000000000..0c0e4eebf
--- /dev/null
+++ b/tests/auto/quick/qmltests/data/test3.html
@@ -0,0 +1,18 @@
+<html>
+<head>
+<title>Test page 3</title>
+</head>
+<script type="text/javascript">
+function kickOffTitleChange()
+{
+ var t = setTimeout("changeTitle('New Title')",3000);
+}
+function changeTitle(title)
+{
+ document.title = title;
+}
+</script>
+<body onload="kickOffTitleChange()">
+Hello.
+</body>
+</html>