blob: 0127e1fa847e04501c23f2ca32ccfed700849d61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<title>Test for bug 698291</title>
</head>
<body>
<iframe style="width: 50%" id="f" src="698291-1-frame.html"></iframe>
<script type="text/javascript">
function expandFrame()
{
document.getElementById("f").style.width="100%";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", expandFrame);
</script>
</body>
</html>
|