blob: 72ee2c84ac29741d4a2c7e3afd91ad82a2bf9474 [file] [log] [blame] [edit]
// Copyright (C) 2020 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: static is a valid name of a static field
info: |
ClassElement:
...
static FieldDefinition ;
template: default
includes: [propertyHelper.js]
features: [class-static-fields-public]
---*/
//- elements
static static;
//- assertions
verifyProperty(C, "static", {
value: undefined,
enumerable: true,
writable: true,
configurable: true
});