blob: 198a30905038afbe3794178663c449b76f95bb36 [file] [log] [blame]
// Copyright 2015 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://drafts.csswg.org/cssom/#the-cssgroupingrule-interface
interface CSSGroupingRule : CSSRule {
[SameObject] readonly attribute CSSRuleList cssRules;
[RaisesException] unsigned long insertRule(DOMString rule, unsigned long index);
[RaisesException] void deleteRule(unsigned long index);
};