1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/bindings/test/test_lookupGetter.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,49 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=462428 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 462428</title> 1.11 + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.12 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 1.13 +</head> 1.14 +<body> 1.15 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=462428">Mozilla Bug 462428</a> 1.16 +<p id="display"></p> 1.17 +<div id="content" style="display: none"> 1.18 + 1.19 +</div> 1.20 +<pre id="test"> 1.21 +<script type="application/javascript"> 1.22 + 1.23 +/** Test for Bug 462428 **/ 1.24 +var x = new XMLHttpRequest; 1.25 +x.open("GET", ""); 1.26 +var getter = x.__lookupGetter__('readyState'); 1.27 +ok(getter !== undefined, "But able to look it up the normal way"); 1.28 +ok(!x.hasOwnProperty('readyState'), "property should still be on the prototype"); 1.29 + 1.30 +var sawProp = false; 1.31 +for (var i in x) { 1.32 + if (i === "readyState") { 1.33 + sawProp = true; 1.34 + } 1.35 +} 1.36 + 1.37 +ok(sawProp, "property should be enumerable"); 1.38 + 1.39 +is(getter.call(x), 1, "the getter actually works"); 1.40 + 1.41 +Object.getPrototypeOf(x).__defineSetter__('readyState', function() {}); 1.42 +is(getter.call(x), 1, "the getter works after defineSetter"); 1.43 + 1.44 +is(x.responseType, "", "Should have correct responseType up front"); 1.45 +var setter = x.__lookupSetter__('responseType'); 1.46 +setter.call(x, "document"); 1.47 +is(x.responseType, "document", "the setter is bound correctly"); 1.48 + 1.49 +</script> 1.50 +</pre> 1.51 +</body> 1.52 +</html>