diff options
Diffstat (limited to 'files/es/web/html/atributos_globales/spellcheck/index.html')
-rw-r--r-- | files/es/web/html/atributos_globales/spellcheck/index.html | 218 |
1 files changed, 0 insertions, 218 deletions
diff --git a/files/es/web/html/atributos_globales/spellcheck/index.html b/files/es/web/html/atributos_globales/spellcheck/index.html deleted file mode 100644 index c6ced2de46..0000000000 --- a/files/es/web/html/atributos_globales/spellcheck/index.html +++ /dev/null @@ -1,218 +0,0 @@ ---- -title: spellcheck -slug: Web/HTML/Atributos_Globales/spellcheck -tags: - - Atributos globales - - Experimental - - HTML - - Referencia -translation_of: Web/HTML/Global_attributes/spellcheck ---- -<p class="note">{{HTMLSidebar("Global_attributes")}}{{SeeCompatTable}}</p> - -<p>El <a href="/es/docs/Web/HTML/Atributos_Globales">atributo global </a><strong>spellcheck</strong> es un atributo enumerado que define si el elemento debe de ser verificado por errores de deletreado. Puede tener los siguientes valores :</p> - -<ul> - <li><code>true , </code>que indica que elemento debe de ser checado para errores de deletreado si es posible .</li> - <li><code>false </code>, que indica que el elemento no debe de ser checado para errores de deletreado .</li> -</ul> - -<p>Si este atributo no está establecido , su valor por default es de tipo elemento y definido por el explorador . El valor por default puede der <em>heredado , </em>lo que significa que el contenido del elemento será checado para errores de deletreado solo si el ancestro más cercano tiene un estado de <em>spellcheck </em>con valor <code>true .</code></p> - -<p>Puedes consultar <a href="/es/docs/Control_de_la_corrección_ortográfica_en_formularios_HTML">este artículo</a> para ver un ejemplo comprensivo del uso de este atributo. <br> - </p> - -<p>Este es un atributo <em>enumerado </em>y no uno<em>Booleano </em>. Esto significa que el uso explícito de uno de los valores <code>true </code>o <code>false </code>es obligatorio y que una escritura como <code><label spellcheck>Example Label</label> </code>no está permitida . El uso correcto es <code><label spellcheck="true">Example Label</label></code>.</p> - -<p>Este atributo es meramente un indicio para el explorador : los exploradores no son obligados a tener disponibilidad para verificar los errores de deletreado , incluso si el atributo <strong>spellcheck</strong> es establecido como <code>true </code>y el explorador soporta verificación de deletreado .</p> - -<p>El valor por default de este atributo es dependiente del explorador y del elemento :</p> - -<table class="fullwidth-table" style="line-height: 1.5;"> - <tbody> - <tr> - <th>Explorador</th> - <th>{{ HTMLElement("html") }}</th> - <th>{{ HTMLElement("textarea") }}</th> - <th>{{ HTMLElement("input") }}</th> - <th>others</th> - <th>Comment</th> - </tr> - <tr> - <td rowspan="3">Firefox</td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <code>0</code></td> - </tr> - <tr> - <td><strong><code>false</code></strong></td> - <td><strong><code>true</code></strong></td> - <td><strong><em>inherited</em></strong></td> - <td><strong><em>inherited</em></strong></td> - <td><strong>When <code>layout.spellcheckDefault</code> is <code>1</code> (default value)</strong></td> - </tr> - <tr> - <td><code>false</code></td> - <td><code>true</code></td> - <td><code>true</code></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <code>2</code></td> - </tr> - <tr> - <td rowspan="3">Seamonkey</td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <span style="font-family: courier new;"><code>0</code></span></td> - </tr> - <tr> - <td><strong><code>false</code></strong></td> - <td><strong><code>true</code></strong></td> - <td><strong><em>inherited</em></strong></td> - <td><strong><em>inherited</em></strong></td> - <td><strong>When <code>layout.spellcheckDefault</code> is <span style="font-family: courier new;">1</span> (default value)</strong></td> - </tr> - <tr> - <td><code>false</code></td> - <td><code>true</code></td> - <td><code>true</code></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <span style="font-family: courier new;"><code>2</code></span></td> - </tr> - <tr> - <td rowspan="3">Camino</td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><code>false</code></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <span style="font-family: courier new;"><code>0</code></span></td> - </tr> - <tr> - <td><code>false</code></td> - <td><code>true</code></td> - <td><em>inherited</em></td> - <td><em>inherited</em></td> - <td>When <code>layout.spellcheckDefault</code> is <span style="font-family: courier new;"><code>1</code></span></td> - </tr> - <tr> - <td><strong><code>false</code></strong></td> - <td><strong><code>true</code></strong></td> - <td><strong><code>true</code></strong></td> - <td><strong><em>inherited</em></strong></td> - <td><strong>When <span style="font-family: courier new;">layout.spellcheckDefault</span> is <span style="font-family: courier new;"><code>2</code> </span><strong>(default value)</strong></strong></td> - </tr> - <tr> - <td>Chrome</td> - <td><code>false</code></td> - <td><code>true</code></td> - <td>?</td> - <td><em>inherited</em></td> - </tr> - <tr> - <td>Internet Explorer</td> - <td><code>false</code></td> - <td><code>true</code></td> - <td>?</td> - <td><em>inherited</em></td> - </tr> - <tr> - <td>Opera</td> - <td><code>false</code></td> - <td><code>true</code></td> - <td>?</td> - <td><em>inherited</em></td> - </tr> - <tr> - <td>Safari</td> - <td><code>false</code></td> - <td><code>true</code></td> - <td>?</td> - <td><em>inherited</em></td> - </tr> - </tbody> -</table> - -<h2 id="Espeficicaciones">Espeficicaciones</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Espeficifación</th> - <th scope="col">Estatus</th> - <th scope="col">Comentario</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', "interaction.html#spelling-and-grammar-checking", "spellcheck")}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td>Sin cambio desde el último snapshot, {{SpecName('HTML5.1')}}</td> - </tr> - <tr> - <td>{{SpecName('HTML5.1', "editing.html#spelling-and-grammar-checking", "spellcheck")}}</td> - <td>{{Spec2('HTML5.1')}}</td> - <td>Snapshot de {{SpecName('HTML WHATWG')}}, declaración inicial</td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilidad_con_exploradores">Compatibilidad con exploradores</h2> - -<p>{{ CompatibilityTable() }}</p> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Característica</th> - <th>Chrome</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari</th> - </tr> - <tr> - <td>Soporte básico</td> - <td>{{ CompatVersionUnknown() }}</td> - <td>{{ CompatGeckoDesktop("1.8.1") }}</td> - <td>{{ CompatVersionUnknown() }}</td> - <td>{{ CompatVersionUnknown() }}</td> - <td>{{ CompatVersionUnknown() }}</td> - </tr> - </tbody> -</table> -</div> - -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Caracterísitica</th> - <th>Android</th> - <th>Chrome for Android</th> - <th>Firefox Mobile (Gecko)</th> - <th>IE Mobile</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - </tr> - <tr> - <td>Soporte básico</td> - <td>{{ CompatNo() }}</td> - <td>{{ CompatUnknown}}</td> - <td>{{ CompatGeckoMobile("1.8.1") }}</td> - <td>{{ CompatUnknown() }}</td> - <td>{{ CompatUnknown() }}</td> - <td>{{ CompatUnknown() }}</td> - </tr> - </tbody> -</table> -</div> - -<p> </p> - -<h2 id="Ver_también">Ver también</h2> - -<ul> - <li><a href="/es/docs/Web/HTML/Atributos_Globales">Atributos globales</a></li> -</ul> |