Use a valid scheme in invalid_link.html

This is to avoid triggering QTBUG-63378 which fails differently with a custom
scheme.

See #3661
This commit is contained in:
Florian Bruhin 2018-06-07 12:49:49 +02:00
parent 0e9159e8e8
commit d059197bc9

View File

@ -6,6 +6,7 @@
<title>Invalid link</title> <title>Invalid link</title>
</head> </head>
<body> <body>
<a href="what://::">I'm broken</a> <a href="http://::">I'm broken</a>
<a href="foo://bar">Unknown scheme</a>
</body> </body>
</html> </html>