spec/Overview.html 1.1207 2019 Remove autosubmit='' from the <menu> ele

Remove autosubmit='' from the <menu> element. (whatwg r2019)

menu
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#menu
label
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#label2
4.11.5.1. Introduction
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#menus-intro
type
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#type18
label
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#label1
HTMLMenuElement
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1207.html#htmlmenuelement

http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1206&r2=1.1207&f=h
http://html5.org/tools/web-apps-tracker?from=2018&to=2019

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1206
retrieving revision 1.1207
diff -u -d -r1.1206 -r1.1207
--- Overview.html 5 Aug 2008 21:17:22 -0000 1.1206
+++ Overview.html 5 Aug 2008 21:52:01 -0000 1.1207
@@ -29330,9 +29330,6 @@
 
    <dd><code title=attr-menu-label><a href="#label1">label</a></code>
 
-   <dd><code title=attr-menu-autosubmit><a
-    href="#autosubmit">autosubmit</a></code>
-
    <dt>DOM interface:
 
    <dd>
@@ -29340,7 +29337,6 @@
      class=idl>interface <dfn id=htmlmenuelement>HTMLMenuElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
            attribute DOMString <a href="#type18" title=dom-menu-type>type</a>;
            attribute DOMString <a href="#label2" title=dom-menu-label>label</a>;
-           attribute boolean <a href="#autosubmit0" title=dom-menu-autosubmit>autosubmit</a>;
 };</pre>
   </dl>
 
@@ -29388,32 +29384,10 @@
    another menu would use the nested menu's <code title=attr-menu-label><a
    href="#label1">label</a></code> attribute for the submenu's menu label.
 
-  <p>The <dfn id=autosubmit
-   title=attr-menu-autosubmit><code>autosubmit</code></dfn> attribute is a <a
-   href="#boolean0">boolean attribute</a> that, if present, indicates that
-   selections made to form controls in this menu are to result in the
-   control's form being immediately submitted.
-
-  <p>If a <code title=event-change>change</code> event bubbles through a
-   <code><a href="#menu">menu</a></code> element, then, in addition to any
-   other default action that that event might have, the UA must act as if the
-   following was an additional default action for that event: if (when it
-   comes time to execute the default action) the <code><a
-   href="#menu">menu</a></code> element has an <code
-   title=attr-menu-autosubmit><a href="#autosubmit">autosubmit</a></code>
-   attribute, and the target of the event is an <code>input</code> element,
-   and that element has a <code title=attr-input-type>type</code> attribute
-   whose value is either <code title="">radio</code> or <code
-   title="">checkbox</code>, and the <code>input</code> element in question
-   has a non-null <code title=dom-input-form>form</code> DOM attribute, then
-   the UA must invoke the <code title=dom-form-submit>submit()</code> method
-   of the <code>form</code> element indicated by that DOM attribute.
-
-  <p>The <dfn id=type18 title=dom-menu-type><code>type</code></dfn>, <dfn
-   id=label2 title=dom-menu-label><code>label</code></dfn>, and <dfn
-   id=autosubmit0 title=dom-menu-autosubmit><code>autosubmit</code></dfn> DOM
-   attributes must <a href="#reflect">reflect</a> the content attributes of
-   the same name.
+  <p>The <dfn id=type18 title=dom-menu-type><code>type</code></dfn> and <dfn
+   id=label2 title=dom-menu-label><code>label</code></dfn> DOM attributes
+   must <a href="#reflect">reflect</a> the content attributes of the same
+   name.
 
   <h5 id=menus-intro><span class=secno>4.11.5.1. </span>Introduction</h5>
 
@@ -29478,7 +29452,7 @@
 &lt;/form&gt;</pre>
 
 <form ...>
- <menu type="toolbar" autosubmit>
+ <menu type="toolbar">
   <li>
    <select name="foo" onchange="form.submit()">
      ...
@@ -29495,7 +29469,7 @@
 </form>
 
 <form ...>
- <menu type="toolbar" autosubmit>
+ <menu type="toolbar">
   <menu label="Foo">
    <select name="foo" onchange="form.submit()">
      ...

Received on Tuesday, 5 August 2008 21:56:04 UTC