hixie: add more uda examples (whatwg r5588)

hixie: add more uda examples (whatwg r5588)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4465&r2=1.4466&f=h
http://html5.org/tools/web-apps-tracker?from=5587&to=5588

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4465
retrieving revision 1.4466
diff -u -d -r1.4465 -r1.4466
--- Overview.html 6 Oct 2010 22:41:27 -0000 1.4465
+++ Overview.html 7 Oct 2010 19:21:40 -0000 1.4466
@@ -316,7 +316,7 @@
 
    <h1>HTML5</h1>
    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
-   <h2 class="no-num no-toc" id="editor-s-draft-6-october-2010">Editor's Draft 6 October 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-7-october-2010">Editor's Draft 7 October 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -422,7 +422,7 @@
   Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation
   track.
-  This specification is the 6 October 2010 Editor's Draft.
+  This specification is the 7 October 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
   actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
   group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
@@ -5416,6 +5416,36 @@
      <tr><td> <code title="">http://example.com/?test#</code>
       <td> <code title="">?test</code>
       <td> The (empty) <a href="#url-fragment" title="url-fragment">&lt;fragment&gt;</a> component is not part of the <a href="#url-query" title="url-query">&lt;query&gt;</a> component.
+   </table></div><div class="example">
+
+   <p>The following table is similar; it provides a list of what each
+   of the <a href="#url-decomposition-idl-attributes">URL decomposition IDL attributes</a> returns for a
+   given <var title="">input</var> URL.</p>
+
+   <table><thead><tr><th>Input
+      <th><code title="dom-uda-protocol"><a href="#dom-uda-protocol">protocol</a></code>
+      <th><code title="dom-uda-host"><a href="#dom-uda-host">host</a></code>
+      <th><code title="dom-uda-hostname"><a href="#dom-uda-hostname">hostname</a></code>
+      <th><code title="dom-uda-port"><a href="#dom-uda-port">port</a></code>
+      <th><code title="dom-uda-pathname"><a href="#dom-uda-pathname">pathname</a></code>
+      <th><code title="dom-uda-search"><a href="#dom-uda-search">search</a></code>
+      <th><code title="dom-uda-hash"><a href="#dom-uda-hash">hash</a></code>
+    <tbody><tr><td><code title="">http://example.com/carrot#question%3f</code>
+      <td><code title="">http:</code>
+      <td><code title="">example.com</code>
+      <td><code title="">example.com</code>
+      <td>(empty string)
+      <td><code title="">/carrot</code>
+      <td>(empty string)
+      <td><code title="">#question%3f</code>
+     <tr><td><code title="">https://www.example.com:4443?</code>
+      <td><code title="">https:</code>
+      <td><code title="">www.example.com:4443</code>
+      <td><code title="">www.example.com</code>
+      <td><code title="">4443</code>
+      <td><code title="">/</code>
+      <td><code title="">?</code>
+      <td>(empty string)
    </table></div><div class="impl">
 
   <h3 id="fetching-resources"><span class="secno">2.7 </span>Fetching resources</h3>

Received on Thursday, 7 October 2010 19:22:28 UTC