michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Empty string variable has a length property michael@0: * michael@0: * @path ch08/8.4/S8.4_A4.js michael@0: * @description Try read length property of empty string variable michael@0: */ michael@0: michael@0: var __str = ""; michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK#1 michael@0: if (__str.length !== 0) { michael@0: $ERROR('#1: var __str = ""; __str.length === 0. Actual: ' + (__str)); michael@0: } michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: