tenfourfox/js/xpconnect/tests/mochitest/test2_bug629331.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
313 B
HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
document.domain = "example.org";
for (var j = 1; j <= 9; j++) {
parent.i = j;
var locali = parent.i;
parent.is(locali, j, 'step ' + j + ' worked');
}
parent.finish();
</script>
</body>
</html>