tenfourfox/js/xpconnect/tests/mochitest/test2_bug629331.html

19 lines
313 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>