diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-08-02 18:03:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 19:03:13 -0300 |
commit | 1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed (patch) | |
tree | 6de13b1b6c1cb5f270b49d4862c3f06b3e4a195c /files/pt-br/glossary | |
parent | 86bfc6444602934695b25cee06320c49946e513c (diff) | |
download | translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.tar.gz translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.tar.bz2 translated-content-1dc3d721e3b43d4ddaa52e0c3f6ffb81ec2088ed.zip |
remove link 'title' attributes that's just the 'href' (pt-br, part 5) (#1849)
Diffstat (limited to 'files/pt-br/glossary')
-rw-r--r-- | files/pt-br/glossary/fuzzing/index.html | 6 | ||||
-rw-r--r-- | files/pt-br/glossary/json/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/glossary/speculative_parsing/index.html | 2 | ||||
-rw-r--r-- | files/pt-br/glossary/xhtml/index.html | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/files/pt-br/glossary/fuzzing/index.html b/files/pt-br/glossary/fuzzing/index.html index 3c57581b4e..9593eb3c29 100644 --- a/files/pt-br/glossary/fuzzing/index.html +++ b/files/pt-br/glossary/fuzzing/index.html @@ -14,7 +14,7 @@ original_slug: Glossario/Fuzzing <p><span class="seoSummary">O <strong>Fuzzing</strong> é uma técnica para testar o software usando ferramentas automáticas para fornecer entradas inválidas ou inesperadas para um programa ou função em um programa, logo verificando os resultados para ver se o programa falha ou age de forma inapropriada. Essa é uma forma importante para garantir que o software está estável, confiável e seguro, e nós usamos muito o fuzzing no Mozilla.</span></p> <ul> - <li><a class="external" href="http://www.squarefree.com/categories/fuzzing/" title="http://www.squarefree.com/categories/fuzzing/">Postagens do blog do Jesse sobre fuzzing</a></li> - <li><a class="external" href="https://pt.wikipedia.org/wiki/Fuzzing" title="http://en.wikipedia.org/wiki/Fuzz_testing">Wikipedia: Fuzz testing</a></li> - <li><a class="external" href="http://fuzzdb.googlecode.com" title="http://fuzzdb.googlecode.com">fuzzdb</a></li> + <li><a class="external" href="http://www.squarefree.com/categories/fuzzing/">Postagens do blog do Jesse sobre fuzzing</a></li> + <li><a class="external" href="https://pt.wikipedia.org/wiki/Fuzzing">Wikipedia: Fuzz testing</a></li> + <li><a class="external" href="http://fuzzdb.googlecode.com">fuzzdb</a></li> </ul> diff --git a/files/pt-br/glossary/json/index.html b/files/pt-br/glossary/json/index.html index b28fbbcbd9..2f6f6af92b 100644 --- a/files/pt-br/glossary/json/index.html +++ b/files/pt-br/glossary/json/index.html @@ -66,7 +66,7 @@ original_slug: JSON <h4 id="Tools" name="Tools">Ferramentas</h4> <ul> <li><a class="internal" href="/en/JavaScript/Reference/Global_Objects/JSON#Browser_compatibility" title="JSON object polyfills">JSON polyfills</a></li> - <li><a class="external" href="http://jsonselect.org" title="http://jsonselect.org/">JSONSelect</a></li> + <li><a class="external" href="http://jsonselect.org">JSONSelect</a></li> <li> </li> </ul> <h4 id="Related_Topics" name="Related_Topics">Topicos Relacionados</h4> diff --git a/files/pt-br/glossary/speculative_parsing/index.html b/files/pt-br/glossary/speculative_parsing/index.html index 3a6c4495ff..12e4125574 100644 --- a/files/pt-br/glossary/speculative_parsing/index.html +++ b/files/pt-br/glossary/speculative_parsing/index.html @@ -18,7 +18,7 @@ original_slug: Web/HTML/Optimizing_your_pages_for_speculative_parsing <li>Don't write an unfinished token. <code><script>document.write("<div></div");</script></code> is bad.</li> <li>Don't finish your writing with a carriage return. <code><script>document.write("Hello World!\r");</script></code> is bad. <code><script>document.write("Hello World!\n");</script></code> is OK.</li> <li>Note that writing balanced tags may cause other tags to be inferred in a way that makes the write unbalanced. E.g. <code><script>document.write("<div></div>");</script></code> inside the <code>head</code> element will be interpreted as <code><script>document.write("</head><body><div></div>");</script></code> which is unbalanced.</li> - <li>Don't let the semicolon of a named character reference be the last thing that is written. Due to a <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=535530" title="https://bugzilla.mozilla.org/show_bug.cgi?id=535530">bug</a> in Firefox 4 though 10 (fixed in Firefox 11), <code><script>document.write("foo&nbsp;");</script></code> causes a speculation failure. However, <code><script>document.write("&nbsp;foo");</script></code> is OK.</li> + <li>Don't let the semicolon of a named character reference be the last thing that is written. Due to a <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=535530">bug</a> in Firefox 4 though 10 (fixed in Firefox 11), <code><script>document.write("foo&nbsp;");</script></code> causes a speculation failure. However, <code><script>document.write("&nbsp;foo");</script></code> is OK.</li> <li>Don't format part of a table. <code><table><script>document.write("<tr><td>Hello World!</td></tr>");</script></table></code> is bad. However, <code><script>document.write("</code><code><table></code><code><tr><td>Hello World!</td></tr></code><code></table></code><code>");</script></code> is OK.</li> <li>TODO: document.write inside other formatting elements.</li> </ul> diff --git a/files/pt-br/glossary/xhtml/index.html b/files/pt-br/glossary/xhtml/index.html index dbef6b8ffc..862d654582 100644 --- a/files/pt-br/glossary/xhtml/index.html +++ b/files/pt-br/glossary/xhtml/index.html @@ -46,7 +46,7 @@ Content-Type: application/xhtml+xml <h2 id="Tipo_MIME_contra_DOCTYPE">Tipo MIME contra DOCTYPE</h2> -<p>Antes do HTML5, as duas sintaxes eram definidas por duas especificações diferentes: <a class="external" href="http://www.w3.org/TR/html4/" title="http://www.w3.org/TR/html4/">HTML 4.01</a> e <a class="external" href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a>. O padrão XHTML1 afirma que você poderia usar XHTML declarando um DOCTYPE especial. Porém, isso nunca foi implementado por nenhum navegador,e tem sido trocado pelo padrão HTML5.<strong> Se sua página é enviada como <code>text/html</code>, você não pode usar XHTML</strong>.</p> +<p>Antes do HTML5, as duas sintaxes eram definidas por duas especificações diferentes: <a class="external" href="http://www.w3.org/TR/html4/">HTML 4.01</a> e <a class="external" href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a>. O padrão XHTML1 afirma que você poderia usar XHTML declarando um DOCTYPE especial. Porém, isso nunca foi implementado por nenhum navegador,e tem sido trocado pelo padrão HTML5.<strong> Se sua página é enviada como <code>text/html</code>, você não pode usar XHTML</strong>.</p> <p>Observe que o tipo MIME deve ser declarado no <code>Content-Type</code> HTTP header. Se você apenas inseriu a meta tag no HTML como <code><meta http-equiv=…></code>, ele será ignorado e tratado como <code>text/html</code>.</p> |