diff options
Diffstat (limited to 'files/es/web/api/web_workers_api')
| -rw-r--r-- | files/es/web/api/web_workers_api/index.html | 129 | ||||
| -rw-r--r-- | files/es/web/api/web_workers_api/using_web_workers/index.html | 111 |
2 files changed, 0 insertions, 240 deletions
diff --git a/files/es/web/api/web_workers_api/index.html b/files/es/web/api/web_workers_api/index.html index 3a055af3ca..441a0f295c 100644 --- a/files/es/web/api/web_workers_api/index.html +++ b/files/es/web/api/web_workers_api/index.html @@ -82,136 +82,7 @@ translation_of: Web/API/Web_Workers_API </tbody> </table> -<h2 id="Browser_compatibility">Browser compatibility</h2> -<div>{{CompatibilityTable}}</div> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Característica</th> - <th>Chrome</th> - <th>Edge</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari (WebKit)</th> - </tr> - <tr> - <td>soporte básico</td> - <td>4</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop(1.9.1)}}</td> - <td>10.0</td> - <td>10.6</td> - <td>4</td> - </tr> - <tr> - <td>Shared workers</td> - <td>4</td> - <td>{{CompatNo}}</td> - <td>{{CompatGeckoDesktop(29)}}</td> - <td>{{CompatNo}}</td> - <td>10.6</td> - <td>4</td> - </tr> - <tr> - <td>Paso de datos usando structured cloning</td> - <td>13</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop(8)}}</td> - <td>10.0</td> - <td>11.5</td> - <td>6</td> - </tr> - <tr> - <td>Paso de datos usando transferable objects</td> - <td>17 {{property_prefix("webkit")}}<br> - 21</td> - <td>{{CompatNo}}</td> - <td>{{CompatGeckoDesktop(18)}}</td> - <td>{{CompatNo}}</td> - <td>15</td> - <td>6</td> - </tr> - <tr> - <td>Global {{domxref("window.URL", "URL")}}</td> - <td>10<sup>[1]</sup><br> - 23</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoDesktop(21)}}</td> - <td>11</td> - <td>15</td> - <td>6<sup>[1]</sup></td> - </tr> - </tbody> -</table> -</div> - -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Característica</th> - <th>Android</th> - <th>Chrome for Android</th> - <th>Edge</th> - <th>Firefox Mobile (Gecko)</th> - <th>Firefox OS (Gecko)</th> - <th>IE Phone</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - </tr> - <tr> - <td>Soporte básico</td> - <td>4.4</td> - <td>4</td> - <td>{{CompatVersionUnknown}}</td> - <td>{{CompatGeckoMobile(1.9.1)}}</td> - <td>1.0.1</td> - <td>10.0</td> - <td>11.5</td> - <td>5.1</td> - </tr> - <tr> - <td>Shared workers</td> - <td>{{CompatNo}}</td> - <td>4</td> - <td>{{CompatNo}}</td> - <td>29</td> - <td>1.4</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - </tr> - <tr> - <td>Pasando datos usando structured cloning</td> - <td>{{CompatNo}}</td> - <td>4</td> - <td>{{CompatVersionUnknown}}</td> - <td>8</td> - <td>1.0.1</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - </tr> - <tr> - <td>Pasando datos usando transferable objects</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>18</td> - <td>1.0.1</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - </tr> - </tbody> -</table> -</div> - -<p>[1] As <code>webkitURL</code>.</p> <h2 id="See_also">See also</h2> diff --git a/files/es/web/api/web_workers_api/using_web_workers/index.html b/files/es/web/api/web_workers_api/using_web_workers/index.html index 8fbb75fec1..c1213ec97d 100644 --- a/files/es/web/api/web_workers_api/using_web_workers/index.html +++ b/files/es/web/api/web_workers_api/using_web_workers/index.html @@ -509,118 +509,7 @@ onmessage = function(event) { <p>The Fibonacci example shown previously demonstrates that workers can in fact <a href="#Spawning_subworkers">spawn additional workers</a>. This makes it easy to create recursive routines.</p> -<h2 id="Browser_Compatibility" name="Browser_Compatibility">Browser compatibility</h2> - -<p>{{ CompatibilityTable() }}</p> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Feature</th> - <th>Chrome</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari (WebKit)</th> - </tr> - <tr> - <td>Dedicated workers</td> - <td>{{CompatChrome(3)}}</td> - <td>{{CompatGeckoDesktop(1.9.1)}}</td> - <td>{{CompatIE(10)}}</td> - <td>{{CompatOpera(10.60)}}</td> - <td>{{CompatSafari(4)}}</td> - </tr> - <tr> - <td>Shared workers</td> - <td>{{CompatChrome(3)}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatOpera(10.60)}}</td> - <td>{{CompatSafari(5)}}</td> - </tr> - <tr> - <td>Passing data using <a href="/en/DOM/The_structured_clone_algorithm" title="The structured clone algorithm">structured cloning</a> . </td> - <td>{{CompatChrome(13)}}</td> - <td>{{CompatGeckoDesktop(8)}}</td> - <td>{{CompatIE(10)}}</td> - <td>{{CompatOpera(11.50)}}</td> - <td>{{CompatSafari(5.1)}}</td> - </tr> - <tr> - <td>Passing data using <a class="external" href="http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#transferable-objects">transferable objects</a></td> - <td>17 {{ property_prefix("webkit") }}<br> - {{CompatChrome(21)}}</td> - <td>{{CompatGeckoDesktop(18)}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatOpera(15)}}</td> - <td>{{CompatSafari(6)}}</td> - </tr> - <tr> - <td>Global {{ domxref("window.URL", "URL") }}</td> - <td>10 as <code>webkitURL</code><br> - {{CompatChrome(23)}}</td> - <td>{{CompatGeckoDesktop(21)}}</td> - <td>{{CompatIE(11)}}</td> - <td>{{CompatOpera(15)}}</td> - <td>6 as <code>webkitURL</code></td> - </tr> - </tbody> -</table> -</div> -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Feature</th> - <th>Android</th> - <th>Chrome for Android</th> - <th>Firefox Mobile (Gecko)</th> - <th>IE Phone</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - </tr> - <tr> - <td>Dedicated workers</td> - <td>---</td> - <td>0.16</td> - <td>3.5 (1.9.1)</td> - <td>---</td> - <td>11</td> - <td>5</td> - </tr> - <tr> - <td>Shared workers</td> - <td>---</td> - <td>{{ CompatNo() }}</td> - <td>---</td> - <td>---</td> - <td>---</td> - <td>---</td> - </tr> - <tr> - <td>Passing data using <a href="/en/DOM/The_structured_clone_algorithm" title="The structured clone algorithm">structured cloning</a> . </td> - <td>---</td> - <td>0.16</td> - <td>8</td> - <td>---</td> - <td>---</td> - <td>---</td> - </tr> - <tr> - <td>Passing data using <a class="external" href="http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#transferable-objectshtml#transferable-objects">transferable objects</a></td> - <td>---</td> - <td></td> - <td>18</td> - <td>---</td> - <td>---</td> - <td>---</td> - </tr> - </tbody> -</table> -</div> <h2 id="See_also">See also</h2> |
