summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/custom/custom_state_set.idl
blob: 5d9abe0decf779fdf5b36abb3d22606d908b78ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2021 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.

// https://wicg.github.io/custom-state-pseudo-class/#customstateset
[
  Exposed=Window,
  RuntimeEnabled=CustomStatePseudoClass
]
interface CustomStateSet {
  setlike<DOMString>;
  [RaisesException] void add(DOMString key);
};