tenfourfox/dom/imptests/html/js/builtins/test_Object.prototype.hasOwnProperty-order.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
604 B
HTML

<!doctype html>
<title>Object.prototype.hasOwnProperty</title>
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
<link rel=help href=http://es5.github.com/#x15.4.4.5>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
var test_error = { name: "test" };
test(function() {
[null, undefined, {}].forEach(function(that) {
test(function() {
assert_throws(test_error, function() {
({}).hasOwnProperty.call(that, { toString: function() { throw test_error; } });
});
});
});
});
</script>