Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Commit a0a64a5

Browse files
committed
Add checkValidity/reportValidity. r8210
1 parent 40f1d4e commit a0a64a5

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

Overview.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,14 +2293,17 @@ <h3 id="other-extensions"><span class="secno">5.5 </span>Extensions to Other Int
22932293
<code>LinkStyle</code> interface from CSSOM. <a href="#refsCSSOM">[CSSOM]</a>
22942294

22952295
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmlformelement">HTMLFormElement</a></code> now has a named
2296-
getter and an indexed getter.
2296+
getter and an indexed getter,
2297+
as well as the <code class="external" title="dom-form-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-checkvalidity">checkValidity()</a></code>
2298+
and <code class="external" title="dom-form-reportvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-reportvalidity">reportValidity()</a></code> methods.
22972299

22982300
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmlselectelement">HTMLSelectElement</a></code> now has a
22992301
getter, <code class="external" title="dom-select-item"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-item">item()</a></code>
23002302
and <code class="external" title="dom-select-namedItem"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-nameditem">namedItem()</a></code> methods, a setter creator,
23012303
<code class="external" title="dom-select-selectedOptions"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-selectedoptions">selectedOptions</a></code> and <code class="external" title="dom-lfe-labels"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-lfe-labels">labels</a></code> IDL attributes,
23022304
and members for the form constrain validation API: <code class="external" title="dom-cva-willvalidate"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-willvalidate">willValidate</a></code>,
2303-
<code class="external" title="dom-cva-validity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validity">validity</a></code>, <code class="external" title="dom-cva-validationMessage"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validationmessage">validationMessage</a></code>, <code class="external" title="dom-form-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-checkvalidity">checkValidity()</a></code>
2305+
<code class="external" title="dom-cva-validity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validity">validity</a></code>, <code class="external" title="dom-cva-validationMessage"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validationmessage">validationMessage</a></code>, <code class="external" title="dom-cva-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-checkvalidity">checkValidity()</a></code>,
2306+
<code class="external" title="dom-cva-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-checkvalidity">reportValidity()</a></code>,
23042307
and <code class="external" title="dom-cva-setCustomValidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-setcustomvalidity">setCustomValidity()</a></code>.
23052308

23062309
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmloptionelement">HTMLOptionElement</a></code> now has a

Overview.src.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2459,7 +2459,9 @@ <h3 id="other-extensions">Extensions to Other Interfaces</h3>
24592459
data-anolis-ref>CSSOM</span>
24602460

24612461
<li><p><code data-anolis-spec=html>HTMLFormElement</code> now has a named
2462-
getter and an indexed getter.
2462+
getter and an indexed getter,
2463+
as well as the <code data-anolis-spec=html title=dom-form-checkvalidity>checkValidity()</code>
2464+
and <code data-anolis-spec=html title=dom-form-reportvalidity>reportValidity()</code> methods.
24632465

24642466
<li><p><code data-anolis-spec=html>HTMLSelectElement</code> now has a
24652467
getter, <code data-anolis-spec=html title=dom-select-item>item()</code>
@@ -2473,7 +2475,8 @@ <h3 id="other-extensions">Extensions to Other Interfaces</h3>
24732475
<code data-anolis-spec=html title=dom-cva-validity>validity</code>, <code
24742476
data-anolis-spec=html
24752477
title=dom-cva-validationMessage>validationMessage</code>, <code
2476-
data-anolis-spec=html title=dom-form-checkvalidity>checkValidity()</code>
2478+
data-anolis-spec=html title=dom-cva-checkvalidity>checkValidity()</code>,
2479+
<code data-anolis-spec=html title=dom-cva-checkvalidity>reportValidity()</code>,
24772480
and <code data-anolis-spec=html
24782481
title=dom-cva-setCustomValidity>setCustomValidity()</code>.
24792482

Overview.whatwg.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2256,14 +2256,17 @@ <h3 id="other-extensions"><span class="secno">5.5 </span>Extensions to Other Int
22562256
<code>LinkStyle</code> interface from CSSOM. <a href="#refsCSSOM">[CSSOM]</a>
22572257

22582258
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmlformelement">HTMLFormElement</a></code> now has a named
2259-
getter and an indexed getter.
2259+
getter and an indexed getter,
2260+
as well as the <code class="external" title="dom-form-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-checkvalidity">checkValidity()</a></code>
2261+
and <code class="external" title="dom-form-reportvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-reportvalidity">reportValidity()</a></code> methods.
22602262

22612263
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmlselectelement">HTMLSelectElement</a></code> now has a
22622264
getter, <code class="external" title="dom-select-item"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-item">item()</a></code>
22632265
and <code class="external" title="dom-select-namedItem"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-nameditem">namedItem()</a></code> methods, a setter creator,
22642266
<code class="external" title="dom-select-selectedOptions"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-select-selectedoptions">selectedOptions</a></code> and <code class="external" title="dom-lfe-labels"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-lfe-labels">labels</a></code> IDL attributes,
22652267
and members for the form constrain validation API: <code class="external" title="dom-cva-willvalidate"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-willvalidate">willValidate</a></code>,
2266-
<code class="external" title="dom-cva-validity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validity">validity</a></code>, <code class="external" title="dom-cva-validationMessage"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validationmessage">validationMessage</a></code>, <code class="external" title="dom-form-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-form-checkvalidity">checkValidity()</a></code>
2268+
<code class="external" title="dom-cva-validity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validity">validity</a></code>, <code class="external" title="dom-cva-validationMessage"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-validationmessage">validationMessage</a></code>, <code class="external" title="dom-cva-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-checkvalidity">checkValidity()</a></code>,
2269+
<code class="external" title="dom-cva-checkvalidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-checkvalidity">reportValidity()</a></code>,
22672270
and <code class="external" title="dom-cva-setCustomValidity"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#dom-cva-setcustomvalidity">setCustomValidity()</a></code>.
22682271

22692272
<li><p><code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#htmloptionelement">HTMLOptionElement</a></code> now has a

0 commit comments

Comments
 (0)