| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: The encodeURI property has the attribute DontEnum |
| description: Checking use propertyIsEnumerable, for-in |
| if (this.propertyIsEnumerable('encodeURI') !== false) { |
| $ERROR('#1: this.propertyIsEnumerable(\'encodeURI\') === false. Actual: ' + (this.propertyIsEnumerable('encodeURI'))); |
| $ERROR('#2: result = true; for (p in this) { if (p === "encodeURI") result = false; } result === true;'); |