mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
390 B
HTML
21 lines
390 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var frame = document.createElement("iframe");
|
||
|
document.body.appendChild(frame);
|
||
|
var frameLoc = frame.contentWindow.location;
|
||
|
document.body.removeChild(frame)
|
||
|
frameLoc.origin;
|
||
|
document.documentElement.removeAttribute('class');
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();"></body>
|
||
|
</html>
|