Skip to content

Commit eb3d2c8

Browse files
committed
Fix source-only validation error and corresponding incorrect indentation.
1 parent 03d6a9d commit eb3d2c8

1 file changed

Lines changed: 98 additions & 98 deletions

File tree

css3-animations/Overview.src.html

Lines changed: 98 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,108 +1512,108 @@ <h2>
15121512
</dd>
15131513
<dt>
15141514
<b>Methods</b>
1515-
<dd>
1516-
<dl>
1517-
<!-- ======================================================================================================= -->
1518-
<dt>
1519-
<code class='method-name'><a id="DOM-CSSKeyframesRule-appendRule" name='DOM-CSSKeyframesRule-appendRule'>appendRule</a></code>
1520-
</dt>
1521-
<dd>
1522-
<div class='method'>
1523-
The <code>appendRule</code> method appends the passed CSSKeyframeRule into the list at the passed key.
1524-
<div class='parameters'>
1525-
<b>Parameters</b>
1526-
<div class='paramtable'>
1527-
<dl>
1528-
<dt>
1529-
<code class='parameter-name'>rule</code> of type <code>DOMString</code>
1530-
</dt>
1531-
<dd>
1532-
The rule to be appended, expressed in the same syntax as one entry in the
1533-
<code>@keyframes</code> rule.
1534-
</dd>
1535-
</dl>
1536-
</div>
1537-
</div><!-- parameters -->
1538-
<div class='return-value'>
1539-
<b>No Return Value</b>
1540-
</div>
1541-
<div>
1542-
<b>No Exceptions</b>
1543-
</div>
1544-
</div><!-- ======================================================================================================= -->
1545-
</dd>
1546-
<dt>
1547-
<code class='method-name'><a id="DOM-CSSKeyframesRule-deleteRule" name='DOM-CSSKeyframesRule-deleteRule'>deleteRule</a></code>
1548-
</dt>
1549-
<dd>
1550-
<div class='method'>
1551-
The <code>deleteRule</code> method deletes the CSSKeyframeRule with the passed key. If a rule with this key
1552-
does not exist, the method does nothing.
1553-
<div class='parameters'>
1554-
<b>Parameters</b>
1555-
<div class='paramtable'>
1556-
<dl>
1557-
<dt>
1558-
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1559-
</dt>
1560-
<dd>
1561-
The key which describes the rule to be deleted. The key must
1562-
resolve to a number between 0 and 1, or the rule is ignored.<br>
1563-
</dd>
1564-
</dl>
1565-
</div>
1566-
</div><!-- parameters -->
1567-
<div class='return-value'>
1568-
<b>No Return Value</b>
1515+
</dt>
1516+
<dd>
1517+
<dl>
1518+
<!-- ======================================================================================================= -->
1519+
<dt>
1520+
<code class='method-name'><a id="DOM-CSSKeyframesRule-appendRule" name='DOM-CSSKeyframesRule-appendRule'>appendRule</a></code>
1521+
</dt>
1522+
<dd>
1523+
<div class='method'>
1524+
The <code>appendRule</code> method appends the passed CSSKeyframeRule into the list at the passed key.
1525+
<div class='parameters'>
1526+
<b>Parameters</b>
1527+
<div class='paramtable'>
1528+
<dl>
1529+
<dt>
1530+
<code class='parameter-name'>rule</code> of type <code>DOMString</code>
1531+
</dt>
1532+
<dd>
1533+
The rule to be appended, expressed in the same syntax as one entry in the
1534+
<code>@keyframes</code> rule.
1535+
</dd>
1536+
</dl>
15691537
</div>
1570-
<div>
1571-
<b>No Exceptions</b>
1538+
</div><!-- parameters -->
1539+
<div class='return-value'>
1540+
<b>No Return Value</b>
1541+
</div>
1542+
<div>
1543+
<b>No Exceptions</b>
1544+
</div>
1545+
</div><!-- ======================================================================================================= -->
1546+
</dd>
1547+
<dt>
1548+
<code class='method-name'><a id="DOM-CSSKeyframesRule-deleteRule" name='DOM-CSSKeyframesRule-deleteRule'>deleteRule</a></code>
1549+
</dt>
1550+
<dd>
1551+
<div class='method'>
1552+
The <code>deleteRule</code> method deletes the CSSKeyframeRule with the passed key. If a rule with this key
1553+
does not exist, the method does nothing.
1554+
<div class='parameters'>
1555+
<b>Parameters</b>
1556+
<div class='paramtable'>
1557+
<dl>
1558+
<dt>
1559+
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1560+
</dt>
1561+
<dd>
1562+
The key which describes the rule to be deleted. The key must
1563+
resolve to a number between 0 and 1, or the rule is ignored.<br>
1564+
</dd>
1565+
</dl>
15721566
</div>
1573-
</div><!-- ======================================================================================================= -->
1574-
</dd>
1575-
<dt>
1576-
<code class='method-name'><a id="DOM-CSSKeyframesRule-findRule" name='DOM-CSSKeyframesRule-findRule'>findRule</a></code>
1577-
</dt>
1578-
<dd>
1579-
<div class='method'>
1580-
The <code>findRule</code> method returns the rule with a key matching the passed key. If no such rule
1581-
exists, a null value is returned.
1582-
<div class='parameters'>
1583-
<b>Parameters</b>
1584-
<div class='paramtable'>
1585-
<dl>
1586-
<dt>
1587-
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1588-
</dt>
1589-
<dd>
1590-
The key which described the rule to find. The key must
1591-
resolve to a number between 0 and 1, or the rule is ignored.<br>
1592-
</dd>
1593-
</dl>
1594-
</div>
1595-
</div><!-- parameters -->
1596-
<div class='return-value'>
1597-
<b>Return Value</b>
1598-
<div class='returnvalue'>
1599-
<dl>
1600-
<dt>
1601-
<code>CSSKeyframeRule</code>
1602-
</dt>
1603-
<dd>
1604-
The found rule.<br>
1605-
</dd>
1606-
</dl>
1607-
</div>
1567+
</div><!-- parameters -->
1568+
<div class='return-value'>
1569+
<b>No Return Value</b>
1570+
</div>
1571+
<div>
1572+
<b>No Exceptions</b>
1573+
</div>
1574+
</div><!-- ======================================================================================================= -->
1575+
</dd>
1576+
<dt>
1577+
<code class='method-name'><a id="DOM-CSSKeyframesRule-findRule" name='DOM-CSSKeyframesRule-findRule'>findRule</a></code>
1578+
</dt>
1579+
<dd>
1580+
<div class='method'>
1581+
The <code>findRule</code> method returns the rule with a key matching the passed key. If no such rule
1582+
exists, a null value is returned.
1583+
<div class='parameters'>
1584+
<b>Parameters</b>
1585+
<div class='paramtable'>
1586+
<dl>
1587+
<dt>
1588+
<code class='parameter-name'>key</code> of type <code>DOMString</code>
1589+
</dt>
1590+
<dd>
1591+
The key which described the rule to find. The key must
1592+
resolve to a number between 0 and 1, or the rule is ignored.<br>
1593+
</dd>
1594+
</dl>
16081595
</div>
1609-
<div>
1610-
<b>No Exceptions</b>
1596+
</div><!-- parameters -->
1597+
<div class='return-value'>
1598+
<b>Return Value</b>
1599+
<div class='returnvalue'>
1600+
<dl>
1601+
<dt>
1602+
<code>CSSKeyframeRule</code>
1603+
</dt>
1604+
<dd>
1605+
The found rule.<br>
1606+
</dd>
1607+
</dl>
16111608
</div>
1612-
</div><!-- ======================================================================================================= -->
1613-
</dd>
1614-
</dl><!-- method -->
1615-
</dd>
1616-
</dt>
1609+
</div>
1610+
<div>
1611+
<b>No Exceptions</b>
1612+
</div>
1613+
</div><!-- ======================================================================================================= -->
1614+
</dd>
1615+
</dl><!-- method -->
1616+
</dd>
16171617
</dl>
16181618
</dd>
16191619
</dl>

0 commit comments

Comments
 (0)