Skip to content

Commit a6415ed

Browse files
committed
[css-animations] Fix linking issues with CSSOMString
1 parent 15af0e1 commit a6415ed

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

css-animations/Overview.bs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -923,15 +923,15 @@ IDL Definition</h4>
923923
Attributes</h4>
924924

925925
<dl dfn-type=attribute dfn-for=AnimationEvent>
926-
<dt><dfn>animationName</dfn>, of type <a interface>CSSOMString</a>, readonly
926+
<dt><dfn>animationName</dfn>, of type {{CSSOMString}}, readonly
927927
<dd>
928928
The value of the 'animation-name' property of the animation that fired the event.
929929
<dt><dfn>elapsedTime</dfn>, of type float, readonly
930930
<dd>
931931
The amount of time the animation has been running, in seconds, when this event fired,
932932
excluding any time the animation was paused. The precise calculation for
933933
of this member is defined along with each event type.
934-
<dt><dfn>pseudoElement</dfn>, of type <a interface>CSSOMString</a>, readonly
934+
<dt><dfn>pseudoElement</dfn>, of type {{CSSOMString}}, readonly
935935
<dd>
936936
The name (beginning with two colons) of the CSS pseudo-element on which the animation
937937
runs (in which case the target of the event is that pseudo-element's corresponding
@@ -1173,7 +1173,7 @@ The <code>appendRule</code> method</h4>
11731173

11741174
<dl>
11751175

1176-
<dt><dfn argument for="CSSKeyframesRule/appendRule(rule)">rule</dfn> of type <a interface>CSSOMString</a>
1176+
<dt><dfn argument for="CSSKeyframesRule/appendRule(rule)">rule</dfn> of type {{CSSOMString}}
11771177
<dd>
11781178
The rule to be appended, expressed in the same syntax as one entry in the
11791179
''@keyframes'' rule. A valid rule is always appended e.g. even if its key(s) already
@@ -1195,7 +1195,7 @@ The <code>deleteRule</code> method</h4>
11951195

11961196
<dl>
11971197

1198-
<dt><dfn argument for="CSSKeyframesRule/deleteRule(select)">select</dfn> of type <a interface>CSSOMString</a>
1198+
<dt><dfn argument for="CSSKeyframesRule/deleteRule(select)">select</dfn> of type {{CSSOMString}}
11991199
<dd>
12001200
The keyframe selector of the rule to be deleted: a comma-separated list of percentage values between 0% and 100% or the keywords ''from'' or ''to'' which resolve to 0% and 100%, respectively.
12011201

@@ -1217,7 +1217,7 @@ The <code>findRule</code> method</h4>
12171217
Parameters:
12181218

12191219
<dl>
1220-
<dt><dfn argument for="CSSKeyframesRule/findRule(select)">select</dfn> of type <a interface>CSSOMString</a>
1220+
<dt><dfn argument for="CSSKeyframesRule/findRule(select)">select</dfn> of type {{CSSOMString}}
12211221
<dd>
12221222
The keyframe selector of the rule to be deleted: a comma-separated list of percentage values between 0% and 100% or the keywords ''from'' or ''to'' which resolve to 0% and 100%, respectively.
12231223

0 commit comments

Comments
 (0)