// 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.padend description: String#padEnd should have name property with value 'padEnd' author: Jordan Harband includes: [propertyHelper.js] ---*/ verifyProperty(String.prototype.padEnd, "name", { value: "padEnd", writable: false, enumerable: false, configurable: true }); reportCompare(0, 0);