From 86bfc6444602934695b25cee06320c49946e513c Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Mon, 2 Aug 2021 12:14:40 -0400 Subject: remove link 'title' attributes that's just the 'href' (ja, part 3) (#1840) --- .../releases/1.5/changing_the_priority_of_http_requests/index.html | 6 +++--- files/ja/mozilla/firefox/releases/14/index.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'files/ja/mozilla') 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

To change the priority of an HTTP request, you need access to the nsIChannel that the request is being made on. If you do not have an existing channel, then you can create one as follows:

-
var ios = Components.classes["@mozilla.org/network/io-service;1"]
+
var ios = Components.classes["@mozilla.org/network/io-service;1"]
                     .getService(Components.interfaces.nsIIOService);
-var ch = ios.newChannel("http://www.example.com/", null, null);
+var ch = ios.newChannel("http://www.example.com/", null, null);
 


@@ -43,7 +43,7 @@ var ch = ios.newChannel("JavaScript, you will probably want to use XMLHttpRequest, a much higher level abstraction of an HTTP request. You can access the channel member of an XMLHttpRequest once you have called the open method on it, as follows:

var req = new XMLHttpRequest();
-req.open("GET", "http://www.example.com", false);
+req.open("GET", "http://www.example.com", 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
 

スペルチェック

    -
  • 辞書の名前が完全な BCP 47 言語タグで解釈されるようになりました (bug 730209, bug 741842)。開発者は辞書名での言語名をハードコーディングしないようにしてください。
  • +
  • 辞書の名前が完全な BCP 47 言語タグで解釈されるようになりました (bug 730209, bug 741842)。開発者は辞書名での言語名をハードコーディングしないようにしてください。

関連記事

-- cgit v1.2.3-54-g00ecf