Skip to content

Commit

Permalink
[] (0) Add the dummy validation API stuff to <object> since it can be…
Browse files Browse the repository at this point in the history
… in .elements too.

git-svn-id: http://svn.whatwg.org/webapps@3783 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 9, 2009
1 parent 1361c20 commit 60b87bc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index
Expand Up @@ -19790,6 +19790,12 @@ href="?audio"&gt;audio&lt;/a&gt; test instead.)&lt;/p&gt;</pre>
attribute DOMString <a href=#dom-dim-height title=dom-dim-height>height</a>;
readonly attribute Document <a href=#dom-object-contentdocument title=dom-object-contentDocument>contentDocument</a>;
readonly attribute <a href=#windowproxy>WindowProxy</a> <a href=#dom-object-contentwindow title=dom-object-contentWindow>contentWindow</a>;

readonly attribute boolean <a href=#dom-cva-willvalidate title=dom-cva-willValidate>willValidate</a>;
readonly attribute <a href=#validitystate>ValidityState</a> <a href=#dom-cva-validity title=dom-cva-validity>validity</a>;
readonly attribute DOMString <a href=#dom-cva-validationmessage title=dom-cva-validationMessage>validationMessage</a>;
boolean <a href=#dom-cva-checkvalidatity title=dom-cva-checkValidatity>checkValidity</a>();
void <a href=#dom-cva-setcustomvalidity title=dom-cva-setCustomValidity>setCustomValidity</a>(in DOMString error);
};</pre>
<div class=impl>
<p>Depending on the type of content instantiated by the
Expand Down Expand Up @@ -20190,6 +20196,12 @@ href="?audio"&gt;audio&lt;/a&gt; test instead.)&lt;/p&gt;</pre>
<code><a href=#the-object-element>object</a></code> element's <a href=#nested-browsing-context>nested browsing context</a>,
if it has one; otherwise, it must return null.</p>

<p>The <code title=dom-cva-willValidate><a href=#dom-cva-willvalidate>willValidate</a></code>,
<code title=dom-cva-validity><a href=#dom-cva-validity>validity</a></code>, and <code title=dom-cva-validationMessage><a href=#dom-cva-validationmessage>validationMessage</a></code>
attributes, and the <code title=dom-cva-checkValidatity><a href=#dom-cva-checkvalidatity>checkValidity()</a></code> and
<code title=dom-cva-setCustomValidity><a href=#dom-cva-setcustomvalidity>setCustomValidity()</a></code>
methods, are part of the <a href=#the-constraint-validation-api>constraint validation API</a>.</p>

</div>

<div class=example>
Expand Down
15 changes: 15 additions & 0 deletions source
Expand Up @@ -21276,6 +21276,12 @@ href="?audio">audio&lt;/a> test instead.)&lt;/p></pre>
attribute DOMString <span title="dom-dim-height">height</span>;
readonly attribute Document <span title="dom-object-contentDocument">contentDocument</span>;
readonly attribute <span>WindowProxy</span> <span title="dom-object-contentWindow">contentWindow</span>;

readonly attribute boolean <span title="dom-cva-willValidate">willValidate</span>;
readonly attribute <span>ValidityState</span> <span title="dom-cva-validity">validity</span>;
readonly attribute DOMString <span title="dom-cva-validationMessage">validationMessage</span>;
boolean <span title="dom-cva-checkValidatity">checkValidity</span>();
void <span title="dom-cva-setCustomValidity">setCustomValidity</span>(in DOMString error);
};</pre>
<div class="impl">
<p>Depending on the type of content instantiated by the
Expand Down Expand Up @@ -21720,6 +21726,15 @@ href="?audio">audio&lt;/a> test instead.)&lt;/p></pre>
<code>object</code> element's <span>nested browsing context</span>,
if it has one; otherwise, it must return null.</p>

<p>The <code title="dom-cva-willValidate">willValidate</code>,
<code title="dom-cva-validity">validity</code>, and <code
title="dom-cva-validationMessage">validationMessage</code>
attributes, and the <code
title="dom-cva-checkValidatity">checkValidity()</code> and
<code
title="dom-cva-setCustomValidity">setCustomValidity()</code>
methods, are part of the <span>constraint validation API</span>.</p>

</div>

<div class="example">
Expand Down

0 comments on commit 60b87bc

Please sign in to comment.