2009-09-01 09:45:05 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
Inner frame for testing bug 500328.
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=500328
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>test 1</title>
|
2010-02-24 08:37:03 -08:00
|
|
|
<style>
|
|
|
|
a { fill:blue; }
|
|
|
|
a:visited { fill:purple; }
|
|
|
|
</style>
|
2009-09-01 09:45:05 -07:00
|
|
|
</head>
|
|
|
|
<body onload="load();" onpopstate="popstate(event);">
|
|
|
|
<script type="application/javascript">
|
|
|
|
function load() {
|
|
|
|
if(parent && parent.onChildLoad)
|
|
|
|
parent.onChildLoad();
|
|
|
|
if(opener && opener.onChildLoad)
|
|
|
|
opener.onChildLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
function popstate(e) {
|
|
|
|
if(parent && parent.onChildLoad)
|
|
|
|
parent.onChildPopState(e);
|
|
|
|
if(opener && opener.onChildLoad)
|
|
|
|
opener.onChildPopState(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
function navigateTo(loc) {
|
|
|
|
location = loc;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<a id="link-anchor1", href="#1">Link Anchor1</a>
|
|
|
|
<a id="link-self" href="file_bug500328_1.html">Self</a>
|
|
|
|
</body>
|
|
|
|
</html>
|