Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * CSSPageRule
10 *
11 * @see https://dom.spec.whatwg.org/#interface-csspagerule
12 *
13 * @property string $cssText
14 * @property CSSRule|null $parentRule
15 * @property CSSStyleSheet|null $parentStyleSheet
16 * @property int $type
17 * @property CSSRuleList $cssRules
18 * @property string $selectorText
19 * @property CSSStyleDeclaration $style
20 * @phan-forbid-undeclared-magic-properties
21 */
22interface CSSPageRule extends CSSGroupingRule {
23    // Direct parent: CSSGroupingRule
24
25    /**
26     * @return string
27     */
28    public function getSelectorText(): string;
29
30    /**
31     * @param string $val
32     */
33    public function setSelectorText( string $val ): void;
34
35    /**
36     * @return CSSStyleDeclaration
37     */
38    public function getStyle();
39
40    /**
41     * @param string $val
42     */
43    public function setStyle( string $val ): void;
44
45}