mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
501 B
HTML
14 lines
501 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function crash() {
|
|
window.frames[0].onload = null;
|
|
window.frames[0].location = 'data:text/html;charset=utf-8,2nd%20page';
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="crash()">
|
|
<!-- iframe contents: <html><body onload="document.body.setAttribute('spellcheck', true);"></body></html> -->
|
|
<iframe src="data:text/html;charset=utf-8;base64,PGh0bWw%2BPGJvZHkgb25sb2FkPSJkb2N1bWVudC5ib2R5LnNldEF0dHJpYnV0ZSgnc3BlbGxjaGVjaycsIHRydWUpOyI%2BPC9ib2R5PjwvaHRtbD4%3D"></iframe>
|
|
</body>
|
|
</html> |