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 * CSSMarginRule
10 *
11 * @see https://dom.spec.whatwg.org/#interface-cssmarginrule
12 *
13 * @property string $cssText
14 * @property CSSRule|null $parentRule
15 * @property CSSStyleSheet|null $parentStyleSheet
16 * @property int $type
17 * @property string $name
18 * @property CSSStyleDeclaration $style
19 * @phan-forbid-undeclared-magic-properties
20 */
21interface CSSMarginRule extends CSSRule {
22    // Direct parent: CSSRule
23
24    /**
25     * @return string
26     */
27    public function getName(): string;
28
29    /**
30     * @return CSSStyleDeclaration
31     */
32    public function getStyle();
33
34    /**
35     * @param string $val
36     */
37    public function setStyle( string $val ): void;
38
39}