mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
334 B
HTML
17 lines
334 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
if (location.search == '?broken') {
|
||
|
// Load something non-https.
|
||
|
var s = document.createElement('script');
|
||
|
s.src = 'http://example.com/dom/browser-element/mochitest/file_empty_script.js';
|
||
|
document.head.appendChild(s);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
file_browserElement_SecurityChange.html.
|
||
|
</body>
|
||
|
</html>
|