[html5] r8628 - [giow] (2) Allow DataView to be used where ArrayBufferView is mentioned Fixing h [...]

whatwg at whatwg.org whatwg at whatwg.org
Tue May 13 11:12:54 PDT 2014


Author: ianh
Date: 2014-05-13 11:12:47 -0700 (Tue, 13 May 2014)
New Revision: 8628

Modified:
   complete.html
   index
   source
Log:
[giow] (2) Allow DataView to be used where ArrayBufferView is mentioned
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=25665
Affected topics: DOM APIs

Modified: complete.html
===================================================================
--- complete.html	2014-05-12 22:25:54 UTC (rev 8627)
+++ complete.html	2014-05-13 18:12:47 UTC (rev 8628)
@@ -290,7 +290,7 @@
   </script><body onload=init()>
   <header class="head with-buttons" id=head><p><a href=//www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 12 May 2014</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 13 May 2014</h2>
    </hgroup><div>
     <div>
      <a href=//whatwg.org/html><span><strong>Multipage Version</strong> <code>whatwg.org/html</code></span></a>
@@ -3663,7 +3663,8 @@
     <pre class=idl>typedef (<dfn id=int8array>Int8Array</dfn> or <dfn id=uint8array>Uint8Array</dfn> or <dfn id=uint8clampedarray>Uint8ClampedArray</dfn> or
          <dfn id=int16array>Int16Array</dfn> or <dfn id=uint16array>Uint16Array</dfn> or
          <dfn id=int32array>Int32Array</dfn> or <dfn id=uint32array>Uint32Array</dfn> or
-         <dfn id=float32array>Float32Array</dfn> or <dfn id=float64array>Float64Array</dfn>) <dfn id=arraybufferview>ArrayBufferView</dfn>;</pre>
+         <dfn id=float32array>Float32Array</dfn> or <dfn id=float64array>Float64Array</dfn> or
+         <dfn id=dataview>DataView</dfn>) <dfn id=arraybufferview>ArrayBufferView</dfn>;</pre>
 
     <p class=note>In particular, the <code><a href=#uint8clampedarray>Uint8ClampedArray</a></code> type is used by some <a href=#imagedata title=ImageData>2D canvas APIs</a>, and the <a href=#network><code>WebSocket</code>
     API</a> uses <code><a href=#arraybuffer>ArrayBuffer</a></code> objects for handling binary frames.</p>

Modified: index
===================================================================
--- index	2014-05-12 22:25:54 UTC (rev 8627)
+++ index	2014-05-13 18:12:47 UTC (rev 8628)
@@ -290,7 +290,7 @@
   </script><body onload=init()>
   <header class="head with-buttons" id=head><p><a href=//www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 12 May 2014</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 13 May 2014</h2>
    </hgroup><div>
     <div>
      <a href=//whatwg.org/html><span><strong>Multipage Version</strong> <code>whatwg.org/html</code></span></a>
@@ -3663,7 +3663,8 @@
     <pre class=idl>typedef (<dfn id=int8array>Int8Array</dfn> or <dfn id=uint8array>Uint8Array</dfn> or <dfn id=uint8clampedarray>Uint8ClampedArray</dfn> or
          <dfn id=int16array>Int16Array</dfn> or <dfn id=uint16array>Uint16Array</dfn> or
          <dfn id=int32array>Int32Array</dfn> or <dfn id=uint32array>Uint32Array</dfn> or
-         <dfn id=float32array>Float32Array</dfn> or <dfn id=float64array>Float64Array</dfn>) <dfn id=arraybufferview>ArrayBufferView</dfn>;</pre>
+         <dfn id=float32array>Float32Array</dfn> or <dfn id=float64array>Float64Array</dfn> or
+         <dfn id=dataview>DataView</dfn>) <dfn id=arraybufferview>ArrayBufferView</dfn>;</pre>
 
     <p class=note>In particular, the <code><a href=#uint8clampedarray>Uint8ClampedArray</a></code> type is used by some <a href=#imagedata title=ImageData>2D canvas APIs</a>, and the <a href=#network><code>WebSocket</code>
     API</a> uses <code><a href=#arraybuffer>ArrayBuffer</a></code> objects for handling binary frames.</p>

Modified: source
===================================================================
--- source	2014-05-12 22:25:54 UTC (rev 8627)
+++ source	2014-05-13 18:12:47 UTC (rev 8628)
@@ -2386,7 +2386,8 @@
     <pre class="idl">typedef (<dfn>Int8Array</dfn> or <dfn>Uint8Array</dfn> or <dfn>Uint8ClampedArray</dfn> or
          <dfn>Int16Array</dfn> or <dfn>Uint16Array</dfn> or
          <dfn>Int32Array</dfn> or <dfn>Uint32Array</dfn> or
-         <dfn>Float32Array</dfn> or <dfn>Float64Array</dfn>) <dfn>ArrayBufferView</dfn>;</pre>
+         <dfn>Float32Array</dfn> or <dfn>Float64Array</dfn> or
+         <dfn>DataView</dfn>) <dfn>ArrayBufferView</dfn>;</pre>
 
     <p class="note">In particular, the <code>Uint8ClampedArray</code> type is used by some <span
     data-x="ImageData">2D canvas APIs</span>, and the <a href="#network"><code>WebSocket</code>



More information about the Commit-Watchers mailing list