michael@0: // Copyright 2011 Google Inc. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * @path ch13/13.2/S13.2_A7_T2.js michael@0: * @description check if "arguments" poisoning poisons michael@0: * hasOwnProperty too michael@0: * @onlyStrict michael@0: */ michael@0: michael@0: "use strict"; michael@0: (function(){}).hasOwnProperty('arguments'); michael@0: michael@0: