mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
558 B
HTML
31 lines
558 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>slave for bug 624047 test</title>
|
||
|
|
||
|
<script type="text/javascript" src="interOriginFrame.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function doStep()
|
||
|
{
|
||
|
localStorage.name = 1;
|
||
|
var timer = setInterval(function() {
|
||
|
is(localStorage.name, 1, "Value is still present");
|
||
|
}, 1000);
|
||
|
|
||
|
setTimeout(function() {
|
||
|
clearTimeout(timer);
|
||
|
localStorage.clear();
|
||
|
postMsg("done");
|
||
|
}, 12000);
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body onload="postMsg('frame loaded');">
|
||
|
</body>
|
||
|
</html>
|