// Copyright (C) 2016 Jordan Harband. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-string.prototype.padstart description: String#padStart should be writable, non-enumerable, and configurable author: Jordan Harband includes: [propertyHelper.js] ---*/ verifyNotEnumerable(String.prototype, 'padStart'); verifyWritable(String.prototype, 'padStart'); verifyConfigurable(String.prototype, 'padStart'); reportCompare(0, 0);