html5/markup/elements iframe.html,1.4,1.5 menu.html,1.3,1.4 table.html,1.4,1.5

Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv28052/elements

Modified Files:
	iframe.html menu.html table.html 
Log Message:
added the "summary" attribute to the <table> element


Index: table.html
===================================================================
RCS file: /sources/public/html5/markup/elements/table.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- table.html	19 Feb 2009 03:00:11 -0000	1.4
+++ table.html	21 Jul 2009 07:45:08 -0000	1.5
@@ -6,4 +6,10 @@
     represents a table; that is, data with more than one
     dimension.</p>
   </div>
+  <div class="attributes">
+    <dl>
+      <dt id="table.attrs.summary">summary</dt>
+      <dd>A prose description of the structure of the table.</dd>
+    </dl>
+  </div>
 </div>

Index: iframe.html
===================================================================
RCS file: /sources/public/html5/markup/elements/iframe.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- iframe.html	8 Jun 2009 00:53:37 -0000	1.4
+++ iframe.html	21 Jul 2009 07:45:08 -0000	1.5
@@ -18,7 +18,7 @@
     </dl>
     <dl>
       <dt id="iframe.attrs.sandbox">sandbox</dt>
-      <dd>Instructs the UA to enables a set of extra restrictions on any
+      <dd>Instructs the UA to enable a set of extra restrictions on any
         content hosted by the <code><a href="#iframe">iframe</a></code>.</dd>
     </dl>
     <dl>

Index: menu.html
===================================================================
RCS file: /sources/public/html5/markup/elements/menu.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- menu.html	13 Feb 2009 12:07:30 -0000	1.3
+++ menu.html	21 Jul 2009 07:45:08 -0000	1.4
@@ -8,19 +8,17 @@
   <div id="attributes">
     <dl>
       <dt id="menu.attrs.type">type</dt>
-      <dd>The kind of menu being declared.</dd>
-      <dd>The attribute has three states. The <code
-          title="attr-menu-type-context">context</code> keyword maps
-        to the <dfn id="context1" title="context menu
-          state">context menu</dfn> state, in which the element is
-        declaring a context menu. The <code
-          title="attr-menu-type-toolbar">toolbar</code> keyword maps to
-        the <dfn id="tool-bar" title="tool bar state">tool bar</dfn>
-        state, in which the element is declaring a tool bar. The
-        attribute may also be omitted. The <i>missing value default</i>
-        is the <dfn id="list" title="list state">list</dfn> state, which
-        indicates that the element is merely a list of commands that is
-        neither declaring a context menu nor defining a tool bar.</dd>
+      <dd>The kind of menu being declared. The attribute has three states:
+        <ul>
+          <li>If the <code>context</code> keyword is specified,
+          the element is declaring a context menu.</li>
+          <li>If the <code>toolbar</code> keyword is specified,
+          the element is declaring a tool bar.</li>
+          <li>If the attribute is omitted, the element is a list of
+          commands that is neither declaring a context menu nor
+          defining a tool bar.</li>
+        </ul>
+      </dd>
     </dl>
     <dl>
       <dt id="menu.attrs.label">label</dt>

Received on Tuesday, 21 July 2009 07:45:19 UTC