Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6459)

Unified Diff: core/html/HTMLFieldSetElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLEmbedElement.idl ('k') | core/html/HTMLFontElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLFieldSetElement.idl
diff --git a/core/html/HTMLFieldSetElement.idl b/core/html/HTMLFieldSetElement.idl
index e8fcd531a420f36bfb89fb0efdff81c4d9e7abfe..58dc29565669eb00969f19ce3c1b8b17a8552a0b 100644
--- a/core/html/HTMLFieldSetElement.idl
+++ b/core/html/HTMLFieldSetElement.idl
@@ -17,18 +17,21 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#the-fieldset-element
+
interface HTMLFieldSetElement : HTMLElement {
[Reflect] attribute boolean disabled;
- [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
+ [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
[Reflect] attribute DOMString name;
readonly attribute DOMString type;
- readonly attribute HTMLCollection elements;
+ readonly attribute HTMLFormControlsCollection elements;
- readonly attribute boolean willValidate;
- readonly attribute ValidityState validity;
- readonly attribute DOMString validationMessage;
- boolean checkValidity();
- void setCustomValidity([TreatUndefinedAs=NullString] DOMString? error);
+ readonly attribute boolean willValidate;
+ [SameObject] readonly attribute ValidityState validity;
+ readonly attribute DOMString validationMessage;
+ boolean checkValidity();
+ boolean reportValidity();
+ void setCustomValidity(DOMString error);
};
« no previous file with comments | « core/html/HTMLEmbedElement.idl ('k') | core/html/HTMLFontElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698