sundar@1373: /* sundar@1373: * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved. sundar@1373: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1373: * sundar@1373: * This code is free software; you can redistribute it and/or modify it sundar@1373: * under the terms of the GNU General Public License version 2 only, as sundar@1373: * published by the Free Software Foundation. sundar@1373: * sundar@1373: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1373: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1373: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1373: * version 2 for more details (a copy is included in the LICENSE file that sundar@1373: * accompanied this code). sundar@1373: * sundar@1373: * You should have received a copy of the GNU General Public License version sundar@1373: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1373: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1373: * sundar@1373: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1373: * or visit www.oracle.com if you need additional information or have any sundar@1373: * questions. sundar@1373: */ sundar@1373: sundar@1373: /** sundar@1373: * JDK-8080848: delete of bound Java method property results in crash sundar@1373: * sundar@1373: * @test sundar@1373: * @run sundar@1373: */ sundar@1373: sundar@1373: var obj = Object.bindProperties({}, new java.io.File(".")); sundar@1373: sundar@1373: delete obj.wait; sundar@1373: sundar@1373: if (typeof obj.wait != 'undefined') { sundar@1373: throw new Error("obj.wait was not deleted"); sundar@1373: }