Bug 1221421 part 2 - Add test. r=bz

This commit is contained in:
Jan de Mooij 2016-02-27 17:32:42 +01:00
parent d33975eafc
commit 417a1b868b
2 changed files with 29 additions and 0 deletions

View File

@ -73,3 +73,4 @@ skip-if = debug == false
[test_iterable.html]
skip-if = debug == false
[test_oom_reporting.html]
[test_domProxyArrayLengthGetter.html]

View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1221421
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1221421</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript">
var x = document.documentElement.style;
x.__proto__ = [1, 2, 3];
var res = 0;
for (var h = 0; h < 5000; ++h) {
res += x.length;
}
is(res, 15000, "length getter should return array length");
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1221421">Mozilla Bug 1221421</a>
</body>
</html>