summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/prompt.html
blob: ae5fbd07a1a92670a995d9a1ccea607b9e7ca2f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<html>
<head>
    <script>
        document.title = prompt("Please, reverse the default value", "Hello Qt");
        if (prompt("REJECT") !== null)
            document.title = "FAIL";
    </script>
</head>
<body>
</body>
</html>