Merge Anne's change: Oct 11, 2012, improve <dt> part of domintro boxes
authorJungkee Song <jungkee.song@samsung.com>
Mon, 19 Nov 2012 12:25:10 +0900
changeset 88 3e56a0715c82
parent 87 6635621fc9d9
child 89 ef59fffdfe2d
Merge Anne's change: Oct 11, 2012, improve <dt> part of domintro boxes
Overview.html
Overview.src.html
--- a/Overview.html	Mon Nov 19 11:58:06 2012 +0900
+++ b/Overview.html	Mon Nov 19 12:25:10 2012 +0900
@@ -654,8 +654,8 @@
   <h3 id="states"><span class="secno">4.6 </span>States</h3>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-readyState"><a href="#dom-xmlhttprequest-readystate">readyState</a></code></dt>
-   <dd><p>Returns the current state.</dd>
+    <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-readystate" title="dom-XMLHttpRequest-readyState">readyState</a></code>
+    <dd><p>Returns the current state.
   </dl>
 
   <p>The <code><a href="#xmlhttprequest">XMLHttpRequest</a></code> object can be in several states. The
@@ -756,9 +756,9 @@
   <h4 id="the-open()-method"><span class="secno">4.7.1 </span>The <code title="">open()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-open"><a href="#dom-xmlhttprequest-open">open(<var title="">method</var>,
-   <var title="">url</var>, <var title="">async</var>, <var title="">user</var>,
-   <var title="">password</var>)</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-open" title="dom-XMLHttpRequest-open">open</a>(<var title="">method</var>,
+   <var title="">url</var> [, <var title="">async</var> = true [, <var title="">user</var> = null [,
+   <var title="">password</var> = null]]])</code>
 
    <dd>
     <p>Sets the <a href="#request-method">request method</a>, <a href="#request-url">request URL</a>,
@@ -956,7 +956,7 @@
   <h4 id="the-setrequestheader()-method"><span class="secno">4.7.2 </span>The <code title="">setRequestHeader()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-setRequestHeader"><a href="#dom-xmlhttprequest-setrequestheader">setRequestHeader(<var title="">header</var>, <var title="">value</var>)</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-setrequestheader" title="dom-XMLHttpRequest-setRequestHeader">setRequestHeader</a>(<var title="">header</var>, <var title="">value</var>)</code>
 
    <dd>
     <p>Appends an header to the list of
@@ -1099,7 +1099,7 @@
   <h4 id="the-timeout-attribute"><span class="secno">4.7.3 </span>The <code title="">timeout</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-timeout"><a href="#dom-xmlhttprequest-timeout">timeout</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-timeout" title="dom-XMLHttpRequest-timeout">timeout</a></code>
    <dd>
     <p>Can be set to a time in milliseconds. When set to a non-zero value
     will cause <a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/fetching-resources.html#fetch" title="fetch">fetching</a> to
@@ -1145,7 +1145,7 @@
   <h4 id="the-withcredentials-attribute"><span class="secno">4.7.4 </span>The <code title="">withCredentials</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-withCredentials"><a href="#dom-xmlhttprequest-withcredentials">withCredentials</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-withcredentials" title="dom-XMLHttpRequest-withCredentials">withCredentials</a></code>
    <dd>
     <p>True when <a href="#user-credentials">user credentials</a> are to be included in a
     cross-origin request. False when they are to be excluded in a
@@ -1214,7 +1214,7 @@
   <h4 id="the-upload-attribute"><span class="secno">4.7.5 </span>The <code title="">upload</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-upload"><a href="#dom-xmlhttprequest-upload">upload</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-upload" title="dom-XMLHttpRequest-upload">upload</a></code>
    <dd><p>Returns the associated <code><a href="#xmlhttprequestupload">XMLHttpRequestUpload</a></code>
    object. It can be used to gather transmission information when data is
    transferred to a server.
@@ -1232,7 +1232,7 @@
   <h4 id="the-send()-method"><span class="secno">4.7.6 </span>The <code title="">send()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-send"><a href="#dom-xmlhttprequest-send">send(<var title="">data</var>)</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-send" title="dom-XMLHttpRequest-send">send</a>([<var title="">data</var> = null])</code>
    <dd>
     <p>Initiates the request. The optional argument provides the
     <a href="#request-entity-body">request entity body</a>. The argument is ignored if
@@ -1935,8 +1935,8 @@
   <h4 id="the-abort()-method"><span class="secno">4.7.8 </span>The <code title="">abort()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-abort"><a href="#dom-xmlhttprequest-abort">abort()</a></code></dt>
-   <dd>Cancels any network activity.</dd>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-abort" title="dom-XMLHttpRequest-abort">abort</a>()</code>
+   <dd>Cancels any network activity.
   </dl>
 
   <p>The
@@ -2026,8 +2026,8 @@
   <h4 id="the-status-attribute"><span class="secno">4.8.1 </span>The <code title="">status</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-status"><a href="#dom-xmlhttprequest-status">status</a></code></dt>
-   <dd><p>Returns the HTTP status code.</dd>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-status" title="dom-XMLHttpRequest-status">status</a></code>
+   <dd><p>Returns the HTTP status code.
   </dl>
 
   <p>The
@@ -2051,8 +2051,8 @@
   <h4 id="the-statustext-attribute"><span class="secno">4.8.2 </span>The <code title="">statusText</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-statusText"><a href="#dom-xmlhttprequest-statustext">statusText</a></code></dt>
-   <dd><p>Returns the HTTP status text.</dd>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-statustext" title="dom-XMLHttpRequest-statusText">statusText</a></code>
+   <dd><p>Returns the HTTP status text.
   </dl>
 
   <p>The
@@ -2075,10 +2075,10 @@
   <h4 id="the-getresponseheader()-method"><span class="secno">4.8.3 </span>The <code title="">getResponseHeader()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-getResponseHeader"><a href="#dom-xmlhttprequest-getresponseheader">getResponseHeader(<var title="">header</var>)</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-getresponseheader" title="dom-XMLHttpRequest-getResponseHeader">getResponseHeader</a>(<var title="">header</var>)</code>
    <dd><p>Returns the header field value from the response of which the
    field name matches <var title="">header</var>, unless the field name is
-   <code>Set-Cookie</code> or <code>Set-Cookie2</code>.</p>
+   <code>Set-Cookie</code> or <code>Set-Cookie2</code>.
   </dl>
 
   <p>The
@@ -2140,10 +2140,10 @@
   <h4 id="the-getallresponseheaders()-method"><span class="secno">4.8.4 </span>The <code title="">getAllResponseHeaders()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-getAllResponseHeaders"><a href="#dom-xmlhttprequest-getallresponseheaders">getAllResponseHeaders()</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-getallresponseheaders" title="dom-XMLHttpRequest-getAllResponseHeaders">getAllResponseHeaders</a>()</code>
    <dd><p>Returns all headers from the response, with the exception of those
    whose field name is <code>Set-Cookie</code> or
-   <code>Set-Cookie2</code>.</dd>
+   <code>Set-Cookie2</code>.
   </dl>
 
   <p>The
@@ -2422,7 +2422,7 @@
   <h4 id="the-overridemimetype()-method"><span class="secno">4.8.6 </span>The <code title="">overrideMimeType()</code> method</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-overrideMimeType"><a href="#dom-xmlhttprequest-overridemimetype">overrideMimeType(<var title="">mime</var>)</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-overridemimetype" title="dom-XMLHttpRequest-overrideMimeType">overrideMimeType</a>(<var title="">mime</var>)</code>
    <dd>
     <p>Sets the <code>Content-Type</code> header for the response to
     <var title="">mime</var>.</p>
@@ -2468,9 +2468,8 @@
 
   <h4 id="the-responsetype-attribute"><span class="secno">4.8.7 </span>The <code title="">responseType</code> attribute</h4>
 
-
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-responseType"><a href="#dom-xmlhttprequest-responsetype">responseType</a></code> [ = <var title="">value</var> ]</dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-responsetype" title="dom-XMLHttpRequest-responseType">responseType</a></code> [ = <var title="">value</var> ]
    <dd>
     <p>Returns the response type.</p>
     <p>Can be set to change the response type. Values are:
@@ -2526,8 +2525,8 @@
   <h4 id="the-response-attribute"><span class="secno">4.8.8 </span>The <code title="">response</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-response"><a href="#dom-xmlhttprequest-response">response</a></code></dt>
-   <dd><p>Returns the <a href="#response-entity-body">response entity body</a>.</dd>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-response" title="dom-XMLHttpRequest-response">response</a></code>
+   <dd><p>Returns the <a href="#response-entity-body">response entity body</a>.
   </dl>
 
   <p>The
@@ -2597,16 +2596,14 @@
   <h4 id="the-responsetext-attribute"><span class="secno">4.8.9 </span>The <code title="">responseText</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-responseText"><a href="#dom-xmlhttprequest-responsetext">responseText</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-responsetext" title="dom-XMLHttpRequest-responseText">responseText</a></code>
    <dd>
-    <p>Returns the <a href="#text-response-entity-body">text response entity body</a>.</p>
+    <p>Returns the <a href="#text-response-entity-body">text response entity body</a>.
 
     <p>Throws an "<code class="external"><a href="http://dev.w3.org/2006/webapi/DOM4Core/#invalidstateerror">InvalidStateError</a></code>"
     exception if
     <code title="dom-XMLHttpRequest-responseType"><a href="#dom-xmlhttprequest-responsetype">responseType</a></code> is not
     the empty string or "<code title="">text</code>".
-
-   </dd>
   </dl>
 
   <p>The
@@ -2639,7 +2636,7 @@
   <h4 id="the-responsexml-attribute"><span class="secno">4.8.10 </span>The <code title="">responseXML</code> attribute</h4>
 
   <dl class="domintro">
-   <dt><var title="">client</var> . <code title="dom-XMLHttpRequest-responseXML"><a href="#dom-xmlhttprequest-responsexml">responseXML</a></code></dt>
+   <dt><code><var title="">client</var> . <a href="#dom-xmlhttprequest-responsexml" title="dom-XMLHttpRequest-responseXML">responseXML</a></code>
    <dd>
     <p>Returns the <a href="#document-response-entity-body">document response entity body</a>.</p>
 
@@ -2647,8 +2644,6 @@
     exception if
     <code title="dom-XMLHttpRequest-responseType"><a href="#dom-xmlhttprequest-responsetype">responseType</a></code> is not
     the empty string or "<code title="">document</code>".
-
-   </dd>
   </dl>
 
   <p>The
@@ -2764,8 +2759,8 @@
   <h3 id="formdata-constructors"><span class="secno">5.1 </span>Constructors</h3>
 
   <dl class="domintro">
-   <dt><var title="">fd</var> = new <code title="dom-FormData"><a href="#dom-formdata">FormData()</a></code></dt>
-   <dd><p>Returns a new <code><a href="#formdata">FormData</a></code> object.</dd>
+   <dt><code><var title="">fd</var> = new <a href="#dom-formdata" title="dom-FormData">FormData</a>()</code>
+   <dd><p>Returns a new <code><a href="#formdata">FormData</a></code> object.
   </dl>
 
   <p>The <dfn id="dom-formdata" title="dom-FormData"><code>FormData()</code></dfn> constructor
@@ -2782,9 +2777,9 @@
   <h3 id="the-append()-method"><span class="secno">5.2 </span>The <code title="">append()</code> method</h3>
 
   <dl class="domintro">
-   <dt><var title="">fd</var> . <code title="dom-FormData-append"><a href="#dom-formdata-append">append(<var title="">name</var>, <var title="">value</var> [, <var title="">filename</var>])</a></code></dt>
+   <dt><code><var title="">fd</var> . <a href="#dom-formdata-append" title="dom-FormData-append">append</a>(<var title="">name</var>, <var title="">value</var> [, <var title="">filename</var>])</code>
    <dd><p>Appends a new name/value-pair to the <code><a href="#formdata">FormData</a></code>
-   object, optionally with a filename.</dd>
+   object, optionally with a filename.
   </dl>
 
   <p>The
--- a/Overview.src.html	Mon Nov 19 11:58:06 2012 +0900
+++ b/Overview.src.html	Mon Nov 19 12:25:10 2012 +0900
@@ -490,11 +490,11 @@
   <span><code>XMLHttpRequest</code> origin</span> are not exposed when
   <span data-anolis-spec=html title=fetch>fetching</span> resources.
 
-  <dl class="domintro">
-    <dt><code><var title>client</var> = new <span title="dom-XMLHttpRequest">XMLHttpRequest</span>()</code>
+  <dl class=domintro>
+    <dt><code><var title>client</var> = new <span title=dom-XMLHttpRequest>XMLHttpRequest</span>()</code>
     <dd>Returns a new <code>XMLHttpRequest</code> object.
 
-    <dt><code><var title>client</var> = new <span title="dom-XMLHttpRequest">XMLHttpRequest</span>({anon:true})</code>
+    <dt><code><var title>client</var> = new <span title=dom-XMLHttpRequest>XMLHttpRequest</span>({anon:true})</code>
     <dd>Returns a new <code>XMLHttpRequest</code> object that has its
     <span>anonymous flag</span> set.
   </dl>
@@ -617,9 +617,9 @@
 
   <h3 id="states">States</h3>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-readyState">readyState</code></dt>
-   <dd><p>Returns the current state.</p></dd>
+  <dl class=domintro>
+    <dt><code><var title>client</var> . <span title="dom-XMLHttpRequest-readyState">readyState</span></code>
+    <dd><p>Returns the current state.
   </dl>
 
   <p>The <code>XMLHttpRequest</code> object can be in several states. The
@@ -719,10 +719,10 @@
 
   <h4>The <code title>open()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-open">open(<var title>method</var>,
-   <var title>url</var>, <var title>async</var>, <var title>user</var>,
-   <var title>password</var>)</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-open>open</span>(<var title>method</var>,
+   <var title>url</var> [, <var title>async</var> = true [, <var title>user</var> = null [,
+   <var title>password</var> = null]]])</code>
 
    <dd>
     <p>Sets the <span>request method</span>, <span>request URL</span>,
@@ -919,8 +919,8 @@
 
   <h4>The <code title>setRequestHeader()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-setRequestHeader">setRequestHeader(<var title>header</var>, <var title>value</var>)</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-setRequestHeader>setRequestHeader</span>(<var title>header</var>, <var title>value</var>)</code>
 
    <dd>
     <p>Appends an header to the list of
@@ -1062,8 +1062,8 @@
 
   <h4>The <code title>timeout</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-timeout">timeout</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title="dom-XMLHttpRequest-timeout">timeout</span></code>
    <dd>
     <p>Can be set to a time in milliseconds. When set to a non-zero value
     will cause <span title=fetch data-anolis-spec=html>fetching</span> to
@@ -1108,8 +1108,8 @@
 
   <h4>The <code title>withCredentials</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-withCredentials">withCredentials</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-withCredentials>withCredentials</span></code>
    <dd>
     <p>True when <span>user credentials</span> are to be included in a
     cross-origin request. False when they are to be excluded in a
@@ -1177,8 +1177,8 @@
 
   <h4>The <code title>upload</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-upload">upload</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-upload>upload</span></code>
    <dd><p>Returns the associated <code>XMLHttpRequestUpload</code>
    object. It can be used to gather transmission information when data is
    transferred to a server.
@@ -1195,8 +1195,8 @@
 
   <h4>The <code title>send()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-send">send(<var title>data</var>)</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-send>send</span>([<var title>data</var> = null])</code>
    <dd>
     <p>Initiates the request. The optional argument provides the
     <span>request entity body</span>. The argument is ignored if
@@ -1898,9 +1898,9 @@
 
   <h4>The <code title>abort()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-abort">abort()</code></dt>
-   <dd>Cancels any network activity.</dd>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-abort>abort</span>()</code>
+   <dd>Cancels any network activity.
   </dl>
 
   <p>The
@@ -1989,9 +1989,9 @@
 
   <h4>The <code title>status</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-status">status</code></dt>
-   <dd><p>Returns the HTTP status code.</p></dd>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-status>status</span></code>
+   <dd><p>Returns the HTTP status code.
   </dl>
 
   <p>The
@@ -2014,9 +2014,9 @@
 
   <h4>The <code title>statusText</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-statusText">statusText</code></dt>
-   <dd><p>Returns the HTTP status text.</p></dd>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-statusText>statusText</span></code>
+   <dd><p>Returns the HTTP status text.
   </dl>
 
   <p>The
@@ -2038,11 +2038,11 @@
 
   <h4>The <code title>getResponseHeader()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-getResponseHeader">getResponseHeader(<var title>header</var>)</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-getResponseHeader>getResponseHeader</span>(<var title>header</var>)</code>
    <dd><p>Returns the header field value from the response of which the
    field name matches <var title>header</var>, unless the field name is
-   <code>Set-Cookie</code> or <code>Set-Cookie2</code>.</p>
+   <code>Set-Cookie</code> or <code>Set-Cookie2</code>.
   </dl>
 
   <p>The
@@ -2103,11 +2103,11 @@
 
   <h4>The <code title>getAllResponseHeaders()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-getAllResponseHeaders">getAllResponseHeaders()</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-getAllResponseHeaders>getAllResponseHeaders</span>()</code>
    <dd><p>Returns all headers from the response, with the exception of those
    whose field name is <code>Set-Cookie</code> or
-   <code>Set-Cookie2</code>.</p></dd>
+   <code>Set-Cookie2</code>.
   </dl>
 
   <p>The
@@ -2385,8 +2385,8 @@
 
   <h4>The <code title>overrideMimeType()</code> method</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-overrideMimeType">overrideMimeType(<var title>mime</var>)</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-overrideMimeType>overrideMimeType</span>(<var title>mime</var>)</code>
    <dd>
     <p>Sets the <code>Content-Type</code> header for the response to
     <var title>mime</var>.</p>
@@ -2432,9 +2432,8 @@
 
   <h4>The <code title>responseType</code> attribute</h4>
 
-
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-responseType">responseType</code> [ = <var title>value</var> ]</dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-responseType>responseType</code> [ = <var title>value</var> ]</code>
    <dd>
     <p>Returns the response type.</p>
     <p>Can be set to change the response type. Values are:
@@ -2489,9 +2488,9 @@
 
   <h4>The <code title>response</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-response">response</code></dt>
-   <dd><p>Returns the <span>response entity body</span>.</p></dd>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-response>response</span></code>
+   <dd><p>Returns the <span>response entity body</span>.
   </dl>
 
   <p>The
@@ -2560,17 +2559,15 @@
 
   <h4>The <code title>responseText</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-responseText">responseText</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title="dom-XMLHttpRequest-responseText">responseText</span></code>
    <dd>
-    <p>Returns the <span>text response entity body</span>.</p>
+    <p>Returns the <span>text response entity body</span>.
 
     <p>Throws an "<code data-anolis-spec=dom>InvalidStateError</code>"
     exception if
     <code title="dom-XMLHttpRequest-responseType">responseType</code> is not
     the empty string or "<code title>text</code>".
-
-   </dd>
   </dl>
 
   <p>The
@@ -2602,8 +2599,8 @@
 
   <h4>The <code title>responseXML</code> attribute</h4>
 
-  <dl class="domintro">
-   <dt><var title>client</var> . <code title="dom-XMLHttpRequest-responseXML">responseXML</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>client</var> . <span title=dom-XMLHttpRequest-responseXML>responseXML</span></code>
    <dd>
     <p>Returns the <span>document response entity body</span>.</p>
 
@@ -2611,8 +2608,6 @@
     exception if
     <code title="dom-XMLHttpRequest-responseType">responseType</code> is not
     the empty string or "<code title>document</code>".
-
-   </dd>
   </dl>
 
   <p>The
@@ -2727,9 +2722,9 @@
 
   <h3 id="formdata-constructors">Constructors</h3>
 
-  <dl class="domintro">
-   <dt><var title>fd</var> = new <code title="dom-FormData">FormData()</code></dt>
-   <dd><p>Returns a new <code>FormData</code> object.</p></dd>
+  <dl class=domintro>
+   <dt><code><var title>fd</var> = new <span title="dom-FormData">FormData</span>()</code>
+   <dd><p>Returns a new <code>FormData</code> object.
   </dl>
 
   <p>The <dfn title="dom-FormData"><code>FormData()</code></dfn> constructor
@@ -2745,10 +2740,10 @@
 
   <h3>The <code title>append()</code> method</h3>
 
-  <dl class="domintro">
-   <dt><var title>fd</var> . <code title="dom-FormData-append">append(<var title>name</var>, <var title>value</var> [, <var title>filename</var>])</code></dt>
+  <dl class=domintro>
+   <dt><code><var title>fd</var> . <span title=dom-FormData-append>append</span>(<var title>name</var>, <var title>value</var> [, <var title>filename</var>])</code>
    <dd><p>Appends a new name/value-pair to the <code>FormData</code>
-   object, optionally with a filename.</p></dd>
+   object, optionally with a filename.
   </dl>
 
   <p>The