| Index: LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js
|
| diff --git a/LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js b/LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js
|
| index 19d0d2b63669cc4c52a15600029b44b36a6c19aa..af0be8e30045743b5dfbc6c7b0ad9e37dcdd020c 100644
|
| --- a/LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js
|
| +++ b/LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js
|
| @@ -23,7 +23,8 @@ descriptorShouldBe("Array.prototype", "'concat'", {writable: true, enumerable: f
|
| descriptorShouldBe("Date.prototype", "'toISOString'", {writable: true, enumerable: false, configurable: true, value: "Date.prototype.toISOString"});
|
| descriptorShouldBe("String.prototype", "'concat'", {writable: true, enumerable: false, configurable: true, value:"String.prototype.concat"});
|
| descriptorShouldBe("RegExp.prototype", "'exec'", {writable: true, enumerable: false, configurable: true, value:"RegExp.prototype.exec"});
|
| -descriptorShouldBe("document.__proto__.__proto__", "'createElement'", {writable: true, enumerable: true, configurable: false, value:"document.createElement"});
|
| +descriptorShouldBe("document.__proto__.__proto__", "'createElement'", {writable: true, enumerable: true, configurable: true, value:"document.createElement"});
|
| +descriptorShouldBe("window", "'location'", {writable: false, enumerable: true, configurable: false, value: "window.location"});
|
| descriptorShouldBe("Number", "'NEGATIVE_INFINITY'", {writable: false, enumerable: false, configurable: false, value:"Number.NEGATIVE_INFINITY"});
|
| descriptorShouldBe("RegExp", "'$_'", {writable: true, enumerable: false, configurable: true, value:"RegExp.$_"});
|
| descriptorShouldBe("/a/g", "'global'", {writable: true, enumerable: false, configurable: false, value:true});
|
|
|