- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 09 Sep 2009 10:38:49 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv29102
Modified Files:
Overview.html
Log Message:
Add the dummy validation API stuff to <object> since it can be in .elements too. (whatwg r3783)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2952
retrieving revision 1.2953
diff -u -d -r1.2952 -r1.2953
--- Overview.html 9 Sep 2009 10:27:25 -0000 1.2952
+++ Overview.html 9 Sep 2009 10:38:46 -0000 1.2953
@@ -17222,6 +17222,12 @@
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
@@ -17602,6 +17608,12 @@
<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">
<p>In the following example, a Java applet is embedded in a page
Received on Wednesday, 9 September 2009 10:38:59 UTC