blob: 3be62aab397436e5592efaa0cfa9bc93e9470959 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Tests whether an interface that only supports named properties and has its
// getter annotated with [NotEnumerable] works as expected.
interface TestNotEnumerableNamedGetter {
[NotEnumerable] getter long (DOMString name);
};