Add test case for bug 617171, recently fixed under bug 618007.

--HG--
extra : rebase_source : f3b3018abb75de48f3430e881cbeb3ff7ec9a2f9
This commit is contained in:
Jason Orendorff 2011-01-10 16:36:45 -06:00
parent 9a144ea618
commit 437a5b8cb2

View File

@ -0,0 +1,4 @@
var a = 6;
Object.defineProperty(this, "a", {writable: false});
a = 7;
assertEq(a, 6);