2010-03-10 00:25:06 -08:00
|
|
|
<html class="reftest-wait"><head>
|
|
|
|
<title>Testcase Bug 381746 - odd and changing border in frameset</title>
|
|
|
|
<script>
|
|
|
|
var frameOnloadCalled = false;
|
|
|
|
function frameOnload() {
|
|
|
|
if (!frameOnloadCalled) {
|
|
|
|
frameOnloadCalled = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
2010-03-07 03:48:37 -08:00
|
|
|
function doe() {
|
2010-03-10 00:25:06 -08:00
|
|
|
document.getElementsByTagName('frame')[0].src = 'data:text/html;charset=utf-8,<body onload="parent.frameOnload();">text';
|
|
|
|
document.getElementsByTagName('frame')[1].src = 'data:text/html;charset=utf-8,<body onload="parent.frameOnload();">text';
|
2010-03-07 03:48:37 -08:00
|
|
|
}
|
|
|
|
window.onload=doe;
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<frameset cols="48%,52%">
|
|
|
|
<frame src="">
|
|
|
|
<frame src="">
|
|
|
|
</frameset>
|
|
|
|
</html>
|