From 62a6f3ee9bf8b6b5ecccb97b60fa949d482174e1 Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Wed, 3 Sep 2008 09:32:32 +0000 Subject: [PATCH] [] (0) WF2:
element summary. git-svn-id: http://svn.whatwg.org/webapps@2143 340c8d12-0b0e-0410-8428-c7bf67bfef74 --- index | 88 +++++++++++++++++++++++++++++++++++++++++++--------------- source | 32 ++++++++++++++++++++- 2 files changed, 96 insertions(+), 24 deletions(-) diff --git a/index b/index index 3d3b6b40acb..dbe6369d5c7 100644 --- a/index +++ b/index @@ -26552,8 +26552,47 @@ function AddCloud(data, x, y) { ... }

... -

4.9.2 The - fieldset element

+

4.9.2 The fieldset element

+ +
+
Categories + +
Flow content. + +
Contexts in which this element may be used: + +
Where flow content is expected. + +
Content model: + +
Flow content. + +
Element-specific attributes: + +
disabled + +
form + +
DOM interface: + +
+
interface HTMLFieldSetElement : HTMLElement {
+           attribute DOMString disabled;
+  readonly attribute HTMLFormElement form;
+
+  readonly attribute HTMLFormControlsCollection elements;
+
+  readonly attribute boolean willValidate;
+  readonly attribute ValidityState validity;
+  readonly attribute DOMString validationMessage;
+  boolean checkValidity();
+  void setCustomValidity(in DOMString error);
+};
+
+ +

...

4.9.3 The input element

@@ -31869,7 +31908,8 @@ never reset. This is nice and consistent.)
Contexts in which this element may be used: -
As the first child of a fieldset element. +
As the first child of a fieldset + element.
As the first child of a details element. @@ -45896,16 +45936,17 @@ interface MessageChannel { href="#blockquote">blockquote, datagrid, dialog, dir, div, dl, - fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, - hr, menu, - nav, ol, - p, pre, - section, div, dl, fieldset, footer, form, + h1, h2, + h3, h4, + h5, h6, + header, hr, menu, nav, ol, p, pre, section, table, or ul, element, or if there is no more content in the parent element and the parent element is not an a element.

@@ -47262,16 +47303,17 @@ interface MessageChannel { dialog, dir, div, dl, dt, embed, - eventsource - fieldset, figure, - footer, form, frame, frameset, - h1, h2, - h3, h4, - h5, h6, - head, header, hr, - iframe, img, input, diff --git a/source b/source index 949c8bed72f..7cc208e0f79 100644 --- a/source +++ b/source @@ -23927,7 +23927,37 @@ function AddCloud(data, x, y) { ... }

...

-

The fieldset element

+

The fieldset element

+ +
+
Categories
+
Flow content.
+
Contexts in which this element may be used:
+
Where flow content is expected.
+
Content model:
+
Flow content.
+
Element-specific attributes:
+
disabled
+
form
+
DOM interface:
+
+
interface HTMLFieldSetElement : HTMLElement {
+           attribute DOMString disabled;
+  readonly attribute HTMLFormElement form;
+
+  readonly attribute HTMLFormControlsCollection elements;
+
+  readonly attribute boolean willValidate;
+  readonly attribute ValidityState validity;
+  readonly attribute DOMString validationMessage;
+  boolean checkValidity();
+  void setCustomValidity(in DOMString error);
+};
+
+
+ +

...

+

The input element