blob: f35e302040f817c868dc1fb4dc8d16d60eff657f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!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>
|