blob: 070548edd13888b67d5894f7323955c53bfef684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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>
|