14.1-15-s.js (383B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 14.1-15-s 6 description: blank lines may come before 'use strict' directive 7 flags: [noStrict] 8 ---*/ 9 10 function foo() 11 { 12 13 14 15 16 17 18 "use strict" ; 19 return (this === undefined); 20 } 21 22 assert(foo.call(undefined)); 23 24 reportCompare(0, 0);