diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-08-02 12:14:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 01:14:40 +0900 |
commit | 86bfc6444602934695b25cee06320c49946e513c (patch) | |
tree | 2ce5eb781371782e29d22e92429dd8feae013167 /files/ja/mozilla | |
parent | 038ca04f4d551f547894b71d337b822d66c8a2b5 (diff) | |
download | translated-content-86bfc6444602934695b25cee06320c49946e513c.tar.gz translated-content-86bfc6444602934695b25cee06320c49946e513c.tar.bz2 translated-content-86bfc6444602934695b25cee06320c49946e513c.zip |
remove link 'title' attributes that's just the 'href' (ja, part 3) (#1840)
Diffstat (limited to 'files/ja/mozilla')
-rw-r--r-- | files/ja/mozilla/firefox/releases/1.5/changing_the_priority_of_http_requests/index.html | 6 | ||||
-rw-r--r-- | files/ja/mozilla/firefox/releases/14/index.html | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/files/ja/mozilla/firefox/releases/1.5/changing_the_priority_of_http_requests/index.html b/files/ja/mozilla/firefox/releases/1.5/changing_the_priority_of_http_requests/index.html index 6064899206..4d7772e52a 100644 --- a/files/ja/mozilla/firefox/releases/1.5/changing_the_priority_of_http_requests/index.html +++ b/files/ja/mozilla/firefox/releases/1.5/changing_the_priority_of_http_requests/index.html @@ -23,9 +23,9 @@ translation_of: Mozilla/Firefox/Releases/1.5/Changing_the_priority_of_HTTP_reque <p>To change the priority of an HTTP request, you need access to the <a href="/en/XPCOM_Interface_Reference/nsIChannel" title="en/XPCOM_Interface_Reference/nsIChannel">nsIChannel</a> that the request is being made on. If you do not have an existing channel, then you can create one as follows:</p> -<pre class="eval">var ios = Components.classes["@<a class="linkification-ext external" href="http://mozilla.org/network/io-service;1" title="Linkification: http://mozilla.org/network/io-service;1">mozilla.org/network/io-service;1</a>"] +<pre class="eval">var ios = Components.classes["@<a class="linkification-ext external" href="http://mozilla.org/network/io-service;1">mozilla.org/network/io-service;1</a>"] .getService(Components.interfaces.nsIIOService); -var ch = ios.newChannel("<a class="linkification-ext external" href="http://www.example.com/" title="Linkification: http://www.example.com/">http://www.example.com/</a>", null, null); +var ch = ios.newChannel("<a class="linkification-ext external" href="http://www.example.com/">http://www.example.com/</a>", null, null); </pre> <p><br> @@ -43,7 +43,7 @@ var ch = ios.newChannel("<a class="linkification-ext external" href="http://www. <p>If you are programming in <a href="/en/JavaScript" title="en/JavaScript">JavaScript</a>, you will probably want to use <a href="/en/XMLHttpRequest" title="en/XMLHttpRequest">XMLHttpRequest</a>, a much higher level abstraction of an HTTP request. You can access the <code>channel</code> member of an <a href="/en/XMLHttpRequest" title="en/XMLHttpRequest">XMLHttpRequest</a> once you have called the <code>open</code> method on it, as follows:</p> <pre class="eval">var req = new XMLHttpRequest(); -req.open("GET", "<a class="linkification-ext external" href="http://www.example.com" title="Linkification: http://www.example.com">http://www.example.com</a>", false); +req.open("GET", "<a class="linkification-ext external" href="http://www.example.com">http://www.example.com</a>", false); if (req.channel instanceof Components.interfaces.nsISupportsPriority) { req.channel.priority = Components.interfaces.nsISupportsPriority.PRIORITY_LOWEST; } diff --git a/files/ja/mozilla/firefox/releases/14/index.html b/files/ja/mozilla/firefox/releases/14/index.html index a446578c5c..4e2ebb8a22 100644 --- a/files/ja/mozilla/firefox/releases/14/index.html +++ b/files/ja/mozilla/firefox/releases/14/index.html @@ -82,7 +82,7 @@ translation_of: Mozilla/Firefox/Releases/14 <h3 id="スペルチェック">スペルチェック</h3> <ul> - <li>辞書の名前が完全な <a class="external" href="http://tools.ietf.org/html/bcp47" title="http://tools.ietf.org/html/bcp47">BCP 47</a> 言語タグで解釈されるようになりました (<a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=730209">bug 730209</a>, <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=741842">bug 741842</a>)。開発者は辞書名での言語名をハードコーディングしないようにしてください。</li> + <li>辞書の名前が完全な <a class="external" href="http://tools.ietf.org/html/bcp47">BCP 47</a> 言語タグで解釈されるようになりました (<a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=730209">bug 730209</a>, <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=741842">bug 741842</a>)。開発者は辞書名での言語名をハードコーディングしないようにしてください。</li> </ul> <h2 id="See_also" name="See_also">関連記事</h2> |