gecko/layout/reftests/bugs/398289-1.html
bzbarsky@mit.edu 1db12bd2d3 Fix the test
2007-10-05 22:21:03 -07:00

22 lines
600 B
HTML

<!DOCTYPE html>
<html class="reftest-wait" style="height: 100%">
<head>
<script>
window.onload = function () {
window.frames[0].document.getElementById("test").selectedIndex = 0;
window.frames[0].document.getElementById("test").selectedIndex = 1;
document.getElementById("test").onload = finishTest;
window.frames[0].location.reload();
}
function finishTest() {
document.documentElement.className = "";
}
</script>
</head>
<body style="height: 100%">
<iframe id="test" src="398289-resource.xul" width="100%" height="100%">
</iframe>
</body>
</html>