- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 21 Jul 2009 07:07:27 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv25306/src
Modified Files:
datatypes.html
Log Message:
dispense with using the schema expression for the datatype on the iframe "sandbox" attribute, replace it with something sane, and do some other cleanup tweaks
Index: datatypes.html
===================================================================
RCS file: /sources/public/html5/markup/src/datatypes.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- datatypes.html 21 Jul 2009 05:46:29 -0000 1.29
+++ datatypes.html 21 Jul 2009 07:07:25 -0000 1.30
@@ -36,7 +36,8 @@
<dd>
<div class="datatype-desc">A
<a href="#space">space</a>-separated list of zero or more
- <a href="#data-token">token</a> instances.</div>
+ <a href="#data-token">token</a>
+ instances.</div>
</dd>
</dl>
<dl><dt>tokens.comma-separated</dt>
@@ -85,12 +86,13 @@
<dd><code class="regexp">\S+</code></dd>
</dl>
<dl><dt>hash-name</dt>
- <dd><code class="regexp">#.+</code></dd>
+ <dd></dd>
<dd>
<div class="datatype-desc">A valid <dfn
id="hash-name">hash-name reference</dfn> to an element of
- type <i>type</i> is a string consisting of a U+0023 NUMBER
- SIGN (<code>#</code>) character followed by a string which
+ type <i>type</i> is a string consisting of a
+ "<code title="U+0023 NUMBER SIGN">#</code>"
+ character followed by a string which
exactly matches the value of the name attribute of an
element in the document with type <i>type</i>.</div>
</dd>
@@ -401,7 +403,7 @@
<dd></dd>
<dd>
<div class="datatype-desc">The literal string
- <code title="U+0030 DIGIT ZERO">0</code>.</div>
+ "<code title="U+0030 DIGIT ZERO">0</code>".</div>
</dd>
</dl>
<dl><dt>javascript</dt>
@@ -412,4 +414,19 @@
match for the literal string "<code>javascript</code>".</div>
</dd>
</dl>
+ <dl><dt>sandbox-allow-list</dt>
+ <dd></dd>
+ <dd>
+ <div class="datatype-desc">An unordered set of unique
+ space-separated
+ <a href="#data-token">tokens</a>, each of which is one of
+ the following literal strings:
+ <ul>
+ <li>"<code>allow-same-origin</code>"</li>
+ <li>"<code>allow-forms</code>"</li>
+ <li>"<code>allow-scripts</code>"</li>
+ </ul>
+ </div>
+ </dd>
+ </dl>
</section>
Received on Tuesday, 21 July 2009 07:07:37 UTC