From 634e45b21248fbb508edb7988483a4b9cf1fff7a Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 25 Feb 2021 18:24:02 +0100 Subject: sync: move --- files/ja/mdn/tools/search/index.html | 158 --------------------- files/ja/orphaned/mdn/tools/search/index.html | 158 +++++++++++++++++++++ .../web/api/xmlhttprequest/openrequest/index.html | 18 +++ .../web/api/document/fullscreenelement/index.html | 81 +++++++++++ .../fullscreenelement/index.html | 81 ----------- .../web/api/xmlhttprequest/openrequest/index.html | 18 --- 6 files changed, 257 insertions(+), 257 deletions(-) delete mode 100644 files/ja/mdn/tools/search/index.html create mode 100644 files/ja/orphaned/mdn/tools/search/index.html create mode 100644 files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html create mode 100644 files/ja/web/api/document/fullscreenelement/index.html delete mode 100644 files/ja/web/api/documentorshadowroot/fullscreenelement/index.html delete mode 100644 files/ja/web/api/xmlhttprequest/openrequest/index.html (limited to 'files/ja') diff --git a/files/ja/mdn/tools/search/index.html b/files/ja/mdn/tools/search/index.html deleted file mode 100644 index fdef55a96b..0000000000 --- a/files/ja/mdn/tools/search/index.html +++ /dev/null @@ -1,158 +0,0 @@ ---- -title: MDN の検索機能 -slug: MDN/Tools/Search -tags: - - Guide - - MDN Meta - - Site-wide - - Tools -translation_of: MDN/Tools/Search ---- -
{{MDNSidebar}}
- -

MDN のオンサイト検索機能では、外部の検索エンジンで MDN の記事を検索した時には得られない多くの機能が提供されます。この記事では MDN の検索エンジンを最大限に活用する方法を記します。

- -

基本的な検索オプション

- -

結果をフィルタリングする

- -

MDN で検索クエリの結果を表示する際に、トピック、技術レベル、文書タイプで結果をフィルタリングするオプションがあります。これは、関連するキーワードが複数の文脈で表示される可能性のあるメソッドを探している場合などに便利です。トピックフィルターを使用して、最も興味のある API の結果のみを表示することができます。これらのフィルターは、ページに設定されたタグによって、どのページを含めるか除外するかを決定します (ページを作成または編集する際に適切にタグ付けするのはこれが理由です)。以下の種類のフィルターを適用することができます。

- -
-
トピック
-
トピックのタグに従って検索結果を絞り込む
-
技術レベル
-
Beginner, Intermediate, Advanced の各タグで絞り込む
-
文書タイプ
-
Example, Guide, Tools の各タグで絞り込む
-
- -

高度な検索オプション

- -

MDN 貢献者向けに特定のマクロや HTML 属性などを検索できるよう、マクロの出力ではなく生の HTML でページのソースを検索できる高度な検索機能を用意しています。

- -

今のところこの高度な検索用のユーザーインターフェイスは用意しておらず、URL で直接アクセスすることで利用できます。検索結果は通常の MDN の検索結果ページあるいは JSON フォーマットのいずれかで得られます (後者の検索結果は例えば KumaScript などから使うこともできます)。この節ではその使い方を説明します。

- -

注: ここで紹介する検索クエリーは広く利用される目的で作る URL ではありません。ツールやユーティリティから使用するためのものであり、将来変更される可能性があります。クエリーのパフォーマンスも高くない場合があります。

- -

検索クエリーの書式

- -

高度な検索クエリーは検索に適切な引数を付けた URL で実行してください。ベースとなる URL は次のいずれかです。

- -
-
https://developer.mozilla.org/ja/search
-
通常の MDN 検索結果ページを出力とする場合はこちらを使います。
-
https://developer.mozilla.org/ja/search.json
-
JSON 形式で結果を取得する場合はこちらを使います。検索結果の書式については {{anch("JSON response body format")}} をご覧ください。
-
- -

これに続けて、欲しい結果を得るには適切なパラメータを追加してください。次のパラメータを組み合わせて利用できます:

- -
-
q=
-
マッチする検索クエリー。これは基本検索で使われるパラメーターと同じです。
-
locale=
-
検索対象とするロケール。既定ではすべてのロケールが対象となります。すべてのロケールを明示的に指定するにはワイルドカード "*" を指定することもできます。例えば、 locale=ja とすれば検索結果を日本語だけに絞り込めます。
-
css_classnames=
-
検索対象とする CSS クラス名。ページの HTML に少なくとも指定されたクラスが 1 つ以上含まれているページを検索します。
-
html_attributes=
-
検索対象とする HTML 属性テキスト。これは前方一致検索です。つまり、指定したテキストが HTML の属性文字列の始めにある場合、検索にマッチします。詳しくは下記をご覧ください。
-
kumascript_macros=
-
検索対象とする 1 つ以上の KumaScript のリスト。これをつかって特定のマクロを使った記事を検索できます。例えば、マクロを廃止する場合や、パラメータが変更され既存のページを更新する必要がある場合に便利です。
-
highlight=
-
truefalse のどちらかで、既定では true です。検索クエリーにマッチする結果の周りに <mark> 要素を含めるかどうかを決めます。
-
per_page=
-
100以下の数値です。既定では Kuma はページ当たり10個の結果を出力します。それとは異なる値を使用する場合にこの引数を使用してください。
-
- -

- -

検索例をいくつか示します。

- -

ロケールによる検索

- -
https://developer.mozilla.org/en-US/search?locale=ja
- -

この例では日本語の記事のリストが得られます。言語 (ロケール) 以外での絞り込みはされません。このページの翻訳時点では 12092 ページが見つかります (もちろん翻訳ページは増え続けているのであなたが試すときにはもっと大きな数になっているはずです!)

- -

CSS クラス名による検索

- -
https://developer.mozilla.org/ja/search?locale=ja&css_classnames=smaller
- -

この例では CSS で smaller クラスを使っている記事のリストが得られます。ページ翻訳時点では 42 ページに絞り込まれます。

- -

HTML 属性文字列による検索

- -
https://developer.mozilla.org/ja/search?locale=ja&html_attributes=style
- -

この例では HTML 要素に style 属性が使われている記事のリストが得られます。ページ翻訳時点では 7277 ページが該当します。これらはダメなページで修正されるべきものです。少しずつ標準化したクラスで置き換えていく必要があります。

- -

属性値も含めて検索することはできますが、検索文字列に =/ を含める場合にはこれらを URL エンコードする必要があることに注意してください。例えば、www.mozilla.org にリンクしているページは次のように検索します:

- -
https://developer.mozilla.org/ja/search?locale=ja&html_attributes=href%3D%22https%3A%2F%2Fwww.mozilla.org
- -

この検索結果は 80 件になりました。www.mozilla.org にリンクしているページは意外と少ないですね!

- -

KumaScript マクロの使用状況による検索

- -
https://developer.mozilla.org/ja/search?locale=ja&kumascript_macros=TemplateLink
- -

この例では {{TemplateLink("TemplateLink")}} マクロを使用しているページを検索します。マクロの引数が変更された時や、マクロの使用をやめたいときに検索することができます。

- -

JSON レスポンス本文の書式

- -

JSON で検索結果を取得する場合も、通常の検索結果ページ同様に数件ずつのページ単位で結果が返されます。各ページには検索結果に関するメタデータが含まれる KumaScript オブジェクトと、通常のページオブジェクトにページ編集用の URL フィールドが追加されたものの配列が返されます。

- -

結果のオブジェクトに含まれるデータは次の通りです。

- -
-
count
-
検索結果の総数
-
next
-
検索結果の次ページ URL (あるいは最終ページの場合は {{JSxRef("Global_Objects/null", "null")}})
-
previous
-
検索結果の前ページ URL (あるいは最初のページの場合は {{JSxRef("Global_Objects/null", "null")}})
-
query
-
結果を検索するのに使われた検索クエリー
-
page
-
このオブジェクトに含まれる検索結果ページ番号
-
pages
-
検索結果ページの総数
-
start
-
このページの結果のうち最初の項目の番号
-
end
-
このページの結果のうち最後の項目の番号
-
filters
-
さまざまな検索フィルターの設定を含めた配列。通常の検索に利用可能なフィルターです
-
documents
-
マッチしたページの{{anch("Page_objects", "ページオブジェクト")}}の配列
-
- -

ページオブジェクト

- -

各ページオブジェクトには次のものが含まれます。

- -
-
title
-
記事タイトル
-
slug
-
記事のスラグ。ページの URL のうち、ロケール名とスラッシュに続くものすべてです。
-
locale
-
ページのロケール
-
excerpt
-
ページコンテンツの断片 (スニペット)。これは記事本文の冒頭部分か、"SEO Summary" クラスが使われていればそのクラスで指定されたコンテンツ。検索クエリ引数内で highlight=false を指定しない限り、excerpt には <mark> 要素が入ります。
-
url
-
ページの完全な URL
-
edit_url
-
ページを編集モードで開く完全な URL
-
tags
-
ページのタグの配列
-
score
-
検索エンジンで割り当てられたスコア値
-
explanation
-
検索クエリーにどのように何故マッチしたかという検索エンジンからの雑多な情報。このコンテンツの詳細についてはこのページでは解説しません。
-
- -

関連情報

- -

追加の管理者のみの検索機能がいくつかあり、例えばスラッグが特定の文字で始まっているページを検索したりすることができます。

diff --git a/files/ja/orphaned/mdn/tools/search/index.html b/files/ja/orphaned/mdn/tools/search/index.html new file mode 100644 index 0000000000..fdef55a96b --- /dev/null +++ b/files/ja/orphaned/mdn/tools/search/index.html @@ -0,0 +1,158 @@ +--- +title: MDN の検索機能 +slug: MDN/Tools/Search +tags: + - Guide + - MDN Meta + - Site-wide + - Tools +translation_of: MDN/Tools/Search +--- +
{{MDNSidebar}}
+ +

MDN のオンサイト検索機能では、外部の検索エンジンで MDN の記事を検索した時には得られない多くの機能が提供されます。この記事では MDN の検索エンジンを最大限に活用する方法を記します。

+ +

基本的な検索オプション

+ +

結果をフィルタリングする

+ +

MDN で検索クエリの結果を表示する際に、トピック、技術レベル、文書タイプで結果をフィルタリングするオプションがあります。これは、関連するキーワードが複数の文脈で表示される可能性のあるメソッドを探している場合などに便利です。トピックフィルターを使用して、最も興味のある API の結果のみを表示することができます。これらのフィルターは、ページに設定されたタグによって、どのページを含めるか除外するかを決定します (ページを作成または編集する際に適切にタグ付けするのはこれが理由です)。以下の種類のフィルターを適用することができます。

+ +
+
トピック
+
トピックのタグに従って検索結果を絞り込む
+
技術レベル
+
Beginner, Intermediate, Advanced の各タグで絞り込む
+
文書タイプ
+
Example, Guide, Tools の各タグで絞り込む
+
+ +

高度な検索オプション

+ +

MDN 貢献者向けに特定のマクロや HTML 属性などを検索できるよう、マクロの出力ではなく生の HTML でページのソースを検索できる高度な検索機能を用意しています。

+ +

今のところこの高度な検索用のユーザーインターフェイスは用意しておらず、URL で直接アクセスすることで利用できます。検索結果は通常の MDN の検索結果ページあるいは JSON フォーマットのいずれかで得られます (後者の検索結果は例えば KumaScript などから使うこともできます)。この節ではその使い方を説明します。

+ +

注: ここで紹介する検索クエリーは広く利用される目的で作る URL ではありません。ツールやユーティリティから使用するためのものであり、将来変更される可能性があります。クエリーのパフォーマンスも高くない場合があります。

+ +

検索クエリーの書式

+ +

高度な検索クエリーは検索に適切な引数を付けた URL で実行してください。ベースとなる URL は次のいずれかです。

+ +
+
https://developer.mozilla.org/ja/search
+
通常の MDN 検索結果ページを出力とする場合はこちらを使います。
+
https://developer.mozilla.org/ja/search.json
+
JSON 形式で結果を取得する場合はこちらを使います。検索結果の書式については {{anch("JSON response body format")}} をご覧ください。
+
+ +

これに続けて、欲しい結果を得るには適切なパラメータを追加してください。次のパラメータを組み合わせて利用できます:

+ +
+
q=
+
マッチする検索クエリー。これは基本検索で使われるパラメーターと同じです。
+
locale=
+
検索対象とするロケール。既定ではすべてのロケールが対象となります。すべてのロケールを明示的に指定するにはワイルドカード "*" を指定することもできます。例えば、 locale=ja とすれば検索結果を日本語だけに絞り込めます。
+
css_classnames=
+
検索対象とする CSS クラス名。ページの HTML に少なくとも指定されたクラスが 1 つ以上含まれているページを検索します。
+
html_attributes=
+
検索対象とする HTML 属性テキスト。これは前方一致検索です。つまり、指定したテキストが HTML の属性文字列の始めにある場合、検索にマッチします。詳しくは下記をご覧ください。
+
kumascript_macros=
+
検索対象とする 1 つ以上の KumaScript のリスト。これをつかって特定のマクロを使った記事を検索できます。例えば、マクロを廃止する場合や、パラメータが変更され既存のページを更新する必要がある場合に便利です。
+
highlight=
+
truefalse のどちらかで、既定では true です。検索クエリーにマッチする結果の周りに <mark> 要素を含めるかどうかを決めます。
+
per_page=
+
100以下の数値です。既定では Kuma はページ当たり10個の結果を出力します。それとは異なる値を使用する場合にこの引数を使用してください。
+
+ +

+ +

検索例をいくつか示します。

+ +

ロケールによる検索

+ +
https://developer.mozilla.org/en-US/search?locale=ja
+ +

この例では日本語の記事のリストが得られます。言語 (ロケール) 以外での絞り込みはされません。このページの翻訳時点では 12092 ページが見つかります (もちろん翻訳ページは増え続けているのであなたが試すときにはもっと大きな数になっているはずです!)

+ +

CSS クラス名による検索

+ +
https://developer.mozilla.org/ja/search?locale=ja&css_classnames=smaller
+ +

この例では CSS で smaller クラスを使っている記事のリストが得られます。ページ翻訳時点では 42 ページに絞り込まれます。

+ +

HTML 属性文字列による検索

+ +
https://developer.mozilla.org/ja/search?locale=ja&html_attributes=style
+ +

この例では HTML 要素に style 属性が使われている記事のリストが得られます。ページ翻訳時点では 7277 ページが該当します。これらはダメなページで修正されるべきものです。少しずつ標準化したクラスで置き換えていく必要があります。

+ +

属性値も含めて検索することはできますが、検索文字列に =/ を含める場合にはこれらを URL エンコードする必要があることに注意してください。例えば、www.mozilla.org にリンクしているページは次のように検索します:

+ +
https://developer.mozilla.org/ja/search?locale=ja&html_attributes=href%3D%22https%3A%2F%2Fwww.mozilla.org
+ +

この検索結果は 80 件になりました。www.mozilla.org にリンクしているページは意外と少ないですね!

+ +

KumaScript マクロの使用状況による検索

+ +
https://developer.mozilla.org/ja/search?locale=ja&kumascript_macros=TemplateLink
+ +

この例では {{TemplateLink("TemplateLink")}} マクロを使用しているページを検索します。マクロの引数が変更された時や、マクロの使用をやめたいときに検索することができます。

+ +

JSON レスポンス本文の書式

+ +

JSON で検索結果を取得する場合も、通常の検索結果ページ同様に数件ずつのページ単位で結果が返されます。各ページには検索結果に関するメタデータが含まれる KumaScript オブジェクトと、通常のページオブジェクトにページ編集用の URL フィールドが追加されたものの配列が返されます。

+ +

結果のオブジェクトに含まれるデータは次の通りです。

+ +
+
count
+
検索結果の総数
+
next
+
検索結果の次ページ URL (あるいは最終ページの場合は {{JSxRef("Global_Objects/null", "null")}})
+
previous
+
検索結果の前ページ URL (あるいは最初のページの場合は {{JSxRef("Global_Objects/null", "null")}})
+
query
+
結果を検索するのに使われた検索クエリー
+
page
+
このオブジェクトに含まれる検索結果ページ番号
+
pages
+
検索結果ページの総数
+
start
+
このページの結果のうち最初の項目の番号
+
end
+
このページの結果のうち最後の項目の番号
+
filters
+
さまざまな検索フィルターの設定を含めた配列。通常の検索に利用可能なフィルターです
+
documents
+
マッチしたページの{{anch("Page_objects", "ページオブジェクト")}}の配列
+
+ +

ページオブジェクト

+ +

各ページオブジェクトには次のものが含まれます。

+ +
+
title
+
記事タイトル
+
slug
+
記事のスラグ。ページの URL のうち、ロケール名とスラッシュに続くものすべてです。
+
locale
+
ページのロケール
+
excerpt
+
ページコンテンツの断片 (スニペット)。これは記事本文の冒頭部分か、"SEO Summary" クラスが使われていればそのクラスで指定されたコンテンツ。検索クエリ引数内で highlight=false を指定しない限り、excerpt には <mark> 要素が入ります。
+
url
+
ページの完全な URL
+
edit_url
+
ページを編集モードで開く完全な URL
+
tags
+
ページのタグの配列
+
score
+
検索エンジンで割り当てられたスコア値
+
explanation
+
検索クエリーにどのように何故マッチしたかという検索エンジンからの雑多な情報。このコンテンツの詳細についてはこのページでは解説しません。
+
+ +

関連情報

+ +

追加の管理者のみの検索機能がいくつかあり、例えばスラッグが特定の文字で始まっているページを検索したりすることができます。

diff --git a/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html b/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html new file mode 100644 index 0000000000..18cc93f844 --- /dev/null +++ b/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html @@ -0,0 +1,18 @@ +--- +title: XMLHttpRequest.openRequest() +slug: Web/API/XMLHttpRequest/openRequest +tags: + - API + - DOM + - Firefox + - Gecko + - Method + - XHR + - XMLHttpRequest + - openRequest + - 非標準 +translation_of: Web/API/XMLHttpRequest/openRequest +--- +
{{APIRef("XMLHttpRequest")}}{{non-standard_header}}
+ +

この Mozilla 固有メソッドは、特権コード内からのみ使用でき、 XMLHttpRequest を初期化するために C++ コンテキストからのみ呼び出されます。 JavaScript コードからのリクエストを初期化するには、代わりに標準の {{domxref("XMLHttpRequest.open", "open()")}} メソッドを使用します。

diff --git a/files/ja/web/api/document/fullscreenelement/index.html b/files/ja/web/api/document/fullscreenelement/index.html new file mode 100644 index 0000000000..2c75a57840 --- /dev/null +++ b/files/ja/web/api/document/fullscreenelement/index.html @@ -0,0 +1,81 @@ +--- +title: DocumentOrShadowRoot.fullscreenElement +slug: Web/API/DocumentOrShadowRoot/fullscreenElement +tags: + - API + - Document + - DocumentOrShadowRoot + - Full-screen + - Fullscreen API + - Graphics + - Property + - Read-only + - Reference + - ShadowRoot + - fullscreenElement + - screen + - グラフィック + - 全画面 + - 読み取り専用 +translation_of: Web/API/DocumentOrShadowRoot/fullscreenElement +--- +
{{ApiRef("Fullscreen API")}}
+ +

DocumentOrShadowRoot.fullscreenElement プロパティは読み取り専用で、この文書内で現在全画面モードで表示されている {{ domxref("Element") }} を返し、全画面モードを使用していない場合は null を返します。

+ +

このプロパティは読み取り専用ですが、変更されても (strict モードでも) 例外は発生しません。設定しても何もせず、無視されます。

+ +

構文

+ +
var element = document.fullscreenElement;
+ +

返値

+ +

現在全画面モードになっている {{domxref("Element")}} オブジェクト。全画面モードがこの document で使用されていない場合、返値は null です。

+ +

+ +

この例は isVideoInFullscreen() 関数を表し、 fullscreenElement からの返値を調べています。文書が全画面モードで (fullscreenElementnull ではなく)、全画面の要素の {{domxref("Node.nodeName", "nodeName")}} が VIDEO、すなわち {{HTMLElement("video")}} 要素を表す場合、この関数は true、すなわち動画が全画面モードであることを表します。

+ +
function isVideoInFullscreen() {
+  if (document.fullscreenElement && document.fullscreenElement.nodeName == 'VIDEO') {
+    return true;
+  }
+  return false;
+}
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("Fullscreen", "#dom-document-fullscreenelement", "Document.fullscreenElement")}}{{Spec2("Fullscreen")}}初回定義
+ +

ブラウザーの対応

+ + + +

{{Compat("api.DocumentOrShadowRoot.fullscreenElement")}}

+ +

関連情報

+ + diff --git a/files/ja/web/api/documentorshadowroot/fullscreenelement/index.html b/files/ja/web/api/documentorshadowroot/fullscreenelement/index.html deleted file mode 100644 index 2c75a57840..0000000000 --- a/files/ja/web/api/documentorshadowroot/fullscreenelement/index.html +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: DocumentOrShadowRoot.fullscreenElement -slug: Web/API/DocumentOrShadowRoot/fullscreenElement -tags: - - API - - Document - - DocumentOrShadowRoot - - Full-screen - - Fullscreen API - - Graphics - - Property - - Read-only - - Reference - - ShadowRoot - - fullscreenElement - - screen - - グラフィック - - 全画面 - - 読み取り専用 -translation_of: Web/API/DocumentOrShadowRoot/fullscreenElement ---- -
{{ApiRef("Fullscreen API")}}
- -

DocumentOrShadowRoot.fullscreenElement プロパティは読み取り専用で、この文書内で現在全画面モードで表示されている {{ domxref("Element") }} を返し、全画面モードを使用していない場合は null を返します。

- -

このプロパティは読み取り専用ですが、変更されても (strict モードでも) 例外は発生しません。設定しても何もせず、無視されます。

- -

構文

- -
var element = document.fullscreenElement;
- -

返値

- -

現在全画面モードになっている {{domxref("Element")}} オブジェクト。全画面モードがこの document で使用されていない場合、返値は null です。

- -

- -

この例は isVideoInFullscreen() 関数を表し、 fullscreenElement からの返値を調べています。文書が全画面モードで (fullscreenElementnull ではなく)、全画面の要素の {{domxref("Node.nodeName", "nodeName")}} が VIDEO、すなわち {{HTMLElement("video")}} 要素を表す場合、この関数は true、すなわち動画が全画面モードであることを表します。

- -
function isVideoInFullscreen() {
-  if (document.fullscreenElement && document.fullscreenElement.nodeName == 'VIDEO') {
-    return true;
-  }
-  return false;
-}
- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("Fullscreen", "#dom-document-fullscreenelement", "Document.fullscreenElement")}}{{Spec2("Fullscreen")}}初回定義
- -

ブラウザーの対応

- - - -

{{Compat("api.DocumentOrShadowRoot.fullscreenElement")}}

- -

関連情報

- - diff --git a/files/ja/web/api/xmlhttprequest/openrequest/index.html b/files/ja/web/api/xmlhttprequest/openrequest/index.html deleted file mode 100644 index 18cc93f844..0000000000 --- a/files/ja/web/api/xmlhttprequest/openrequest/index.html +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: XMLHttpRequest.openRequest() -slug: Web/API/XMLHttpRequest/openRequest -tags: - - API - - DOM - - Firefox - - Gecko - - Method - - XHR - - XMLHttpRequest - - openRequest - - 非標準 -translation_of: Web/API/XMLHttpRequest/openRequest ---- -
{{APIRef("XMLHttpRequest")}}{{non-standard_header}}
- -

この Mozilla 固有メソッドは、特権コード内からのみ使用でき、 XMLHttpRequest を初期化するために C++ コンテキストからのみ呼び出されます。 JavaScript コードからのリクエストを初期化するには、代わりに標準の {{domxref("XMLHttpRequest.open", "open()")}} メソッドを使用します。

-- cgit v1.2.3-54-g00ecf From 57e52f9167e80df26ce41d6c468283450266f2bf Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 25 Feb 2021 18:24:10 +0100 Subject: sync: modify --- files/fr/_redirects.txt | 1 + files/fr/_wikihistory.json | 14 +++---- .../web/api/xmlhttprequest/sendasbinary/index.html | 3 +- files/ja/_redirects.txt | 10 +++-- files/ja/_wikihistory.json | 48 +++++++++++----------- files/ja/orphaned/mdn/tools/search/index.html | 3 +- .../web/api/xmlhttprequest/openrequest/index.html | 3 +- .../web/api/document/fullscreenelement/index.html | 3 +- files/ru/_redirects.txt | 3 +- files/ru/_wikihistory.json | 14 +++---- files/ru/orphaned/mdn/tools/search/index.html | 4 +- files/zh-cn/_redirects.txt | 8 ++-- files/zh-cn/_wikihistory.json | 28 ++++++------- .../web/api/xmlhttprequest/openrequest/index.html | 3 +- .../web/api/document/fullscreenelement/index.html | 4 +- 15 files changed, 80 insertions(+), 69 deletions(-) (limited to 'files/ja') diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt index 4534b44a23..e21e5b5602 100644 --- a/files/fr/_redirects.txt +++ b/files/fr/_redirects.txt @@ -3983,6 +3983,7 @@ /fr/docs/Web/API/Worker.terminate /fr/docs/Web/API/Worker/terminate /fr/docs/Web/API/Worker/Functions_and_classes_available_to_workers /fr/docs/Web/API/Web_Workers_API/Functions_and_classes_available_to_workers /fr/docs/Web/API/XMLHttpRequest/Utiliser_XMLHttpRequest /fr/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest +/fr/docs/Web/API/XMLHttpRequest/sendAsBinary /fr/docs/orphaned/Web/API/XMLHttpRequest/sendAsBinary /fr/docs/Web/API/console.log /fr/docs/Web/API/Console/log /fr/docs/Web/API/console.time /fr/docs/Web/API/Console/time /fr/docs/Web/API/console.timeEnd /fr/docs/Web/API/Console/timeEnd diff --git a/files/fr/_wikihistory.json b/files/fr/_wikihistory.json index a62281787c..3b1152e3c9 100644 --- a/files/fr/_wikihistory.json +++ b/files/fr/_wikihistory.json @@ -14492,13 +14492,6 @@ "ThCarrere" ] }, - "Web/API/XMLHttpRequest/sendAsBinary": { - "modified": "2020-10-15T22:26:07.337Z", - "contributors": [ - "SphinxKnight", - "MasterFox" - ] - }, "Web/API/XMLHttpRequest/setRequestHeader": { "modified": "2020-10-15T22:22:04.139Z", "contributors": [ @@ -46002,5 +45995,12 @@ "Mgjbot", "BenoitL" ] + }, + "orphaned/Web/API/XMLHttpRequest/sendAsBinary": { + "modified": "2020-10-15T22:26:07.337Z", + "contributors": [ + "SphinxKnight", + "MasterFox" + ] } } \ No newline at end of file diff --git a/files/fr/orphaned/web/api/xmlhttprequest/sendasbinary/index.html b/files/fr/orphaned/web/api/xmlhttprequest/sendasbinary/index.html index d9414ee78c..72dbea9632 100644 --- a/files/fr/orphaned/web/api/xmlhttprequest/sendasbinary/index.html +++ b/files/fr/orphaned/web/api/xmlhttprequest/sendasbinary/index.html @@ -1,6 +1,6 @@ --- title: XMLHttpRequest.sendAsBinary() -slug: Web/API/XMLHttpRequest/sendAsBinary +slug: orphaned/Web/API/XMLHttpRequest/sendAsBinary tags: - HTTP - Méthode @@ -9,6 +9,7 @@ tags: - Reference - XHR translation_of: Web/API/XMLHttpRequest/sendAsBinary +original_slug: Web/API/XMLHttpRequest/sendAsBinary ---
{{APIRef('XMLHttpRequest')}}
diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 728b88a6fb..809e0a1892 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -56,7 +56,7 @@ /ja/docs/API/Document/fgColor /ja/docs/Web/API/Document/fgColor /ja/docs/API/Document/forms /ja/docs/Web/API/Document/forms /ja/docs/API/Document/fullscreen /ja/docs/Web/API/Document/fullscreen -/ja/docs/API/Document/fullscreenElement /ja/docs/Web/API/DocumentOrShadowRoot/fullscreenElement +/ja/docs/API/Document/fullscreenElement /ja/docs/Web/API/Document/fullscreenElement /ja/docs/API/Document/fullscreenEnabled /ja/docs/Web/API/Document/fullscreenEnabled /ja/docs/API/Document/getBoxObjectFor /ja/docs/Web/API/Document/getBoxObjectFor /ja/docs/API/Document/getElementById /ja/docs/Web/API/Document/getElementById @@ -3322,7 +3322,7 @@ /ja/docs/MDN/Contribute/Tools/Page_watching /ja/docs/orphaned/MDN/Tools/Page_watching /ja/docs/MDN/Contribute/Tools/Revision_dashboard /ja/docs/orphaned/MDN/Tools/Revision_dashboard /ja/docs/MDN/Contribute/Tools/Sample_server /ja/docs/MDN/Tools/Sample_server -/ja/docs/MDN/Contribute/Tools/Search /ja/docs/MDN/Tools/Search +/ja/docs/MDN/Contribute/Tools/Search /ja/docs/orphaned/MDN/Tools/Search /ja/docs/MDN/Contribute/Tools/Template_editing /ja/docs/orphaned/MDN/Tools/Template_editing /ja/docs/MDN/Contribute/Tools/Zones /ja/docs/MDN/Tools/Zones /ja/docs/MDN/Contribute/Troubleshooting /ja/docs/orphaned/MDN/Troubleshooting @@ -3362,10 +3362,11 @@ /ja/docs/MDN/Tools/Page_regeneration /ja/docs/orphaned/MDN/Tools/Page_regeneration /ja/docs/MDN/Tools/Page_watching /ja/docs/orphaned/MDN/Tools/Page_watching /ja/docs/MDN/Tools/Revision_dashboard /ja/docs/orphaned/MDN/Tools/Revision_dashboard +/ja/docs/MDN/Tools/Search /ja/docs/orphaned/MDN/Tools/Search /ja/docs/MDN/Tools/Template_editing /ja/docs/orphaned/MDN/Tools/Template_editing /ja/docs/MDN/Troubleshooting /ja/docs/orphaned/MDN/Troubleshooting /ja/docs/MDN/User_guide /ja/docs/MDN/Tools -/ja/docs/MDN/User_guide/Advanced_search /ja/docs/MDN/Tools/Search +/ja/docs/MDN/User_guide/Advanced_search /ja/docs/orphaned/MDN/Tools/Search /ja/docs/MDN/User_guide/Deleting_pages /ja/docs/orphaned/MDN/Tools/Page_deletion /ja/docs/MDN/User_guide/Linking_to_MDN /ja/docs/orphaned/MDN/About/Linking_to_MDN /ja/docs/MDN_at_ten /ja/docs/MDN/At_ten @@ -3745,13 +3746,13 @@ /ja/docs/Web/API/Document/defaultView/storage_event /ja/docs/Web/API/Window/storage_event /ja/docs/Web/API/Document/domConfig /ja/docs/Web/API/Document /ja/docs/Web/API/Document/elementFromPoint /ja/docs/Web/API/DocumentOrShadowRoot/elementFromPoint -/ja/docs/Web/API/Document/fullscreenElement /ja/docs/Web/API/DocumentOrShadowRoot/fullscreenElement /ja/docs/Web/API/Document/getAnimations /ja/docs/Web/API/DocumentOrShadowRoot/getAnimations /ja/docs/Web/API/Document/getSelection /ja/docs/conflicting/Web/API/DocumentOrShadowRoot/getSelection /ja/docs/Web/API/Document/inputEncoding /ja/docs/conflicting/Web/API/Document/characterSet /ja/docs/Web/API/Document/onselectionchange /ja/docs/Web/API/GlobalEventHandlers/onselectionchange /ja/docs/Web/API/Document/styleSheets /ja/docs/Web/API/DocumentOrShadowRoot/styleSheets /ja/docs/Web/API/DocumentOrShadowRoot/activeElement /ja/docs/Web/API/Document/activeElement +/ja/docs/Web/API/DocumentOrShadowRoot/fullscreenElement /ja/docs/Web/API/Document/fullscreenElement /ja/docs/Web/API/DocumentOrShadowRoot/nodeFromPoint /ja/docs/conflicting/Web/API/DocumentOrShadowRoot /ja/docs/Web/API/DocumentOrShadowRoot/nodesFromPoint /ja/docs/conflicting/Web/API/DocumentOrShadowRoot_20ea0e1d91453a020aad3a16dbce16f1 /ja/docs/Web/API/Document_Object_Model/Preface /ja/docs/conflicting/Web/API/Document_Object_Model_8435a25d5137b436d5d7161e1b813c02 @@ -3998,6 +3999,7 @@ /ja/docs/Web/API/WindowTimers/setInterval /ja/docs/Web/API/WindowOrWorkerGlobalScope/setInterval /ja/docs/Web/API/WindowTimers/setTimeout /ja/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout /ja/docs/Web/API/WorkerGlobalScope/caches /ja/docs/Web/API/WindowOrWorkerGlobalScope/caches +/ja/docs/Web/API/XMLHttpRequest/openRequest /ja/docs/orphaned/Web/API/XMLHttpRequest/openRequest /ja/docs/Web/API/console.dir /ja/docs/Web/API/Console/dir /ja/docs/Web/API/console.log /ja/docs/Web/API/Console/log /ja/docs/Web/API/console.time /ja/docs/Web/API/Console/time diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index f066e7da5a..2e54f8c7f8 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -6149,17 +6149,6 @@ "hamasaki" ] }, - "MDN/Tools/Search": { - "modified": "2020-09-30T16:50:21.247Z", - "contributors": [ - "chrisdavidmills", - "mfuji09", - "wbamberg", - "Uemmra3", - "hamasaki", - "dynamis" - ] - }, "Mozilla": { "modified": "2020-08-10T23:23:31.255Z", "contributors": [ @@ -12760,13 +12749,6 @@ "mfuji09" ] }, - "Web/API/DocumentOrShadowRoot/fullscreenElement": { - "modified": "2020-10-15T21:46:47.293Z", - "contributors": [ - "mfuji09", - "yyss" - ] - }, "Web/API/DocumentOrShadowRoot/getSelection": { "modified": "2020-10-15T22:26:08.191Z", "contributors": [ @@ -25097,12 +25079,6 @@ "yuta0801" ] }, - "Web/API/XMLHttpRequest/openRequest": { - "modified": "2020-07-29T10:05:34.264Z", - "contributors": [ - "eltociear" - ] - }, "Web/API/XMLHttpRequest/progress_event": { "modified": "2020-10-15T22:15:47.580Z", "contributors": [ @@ -53496,5 +53472,29 @@ "ethertank", "Kohei" ] + }, + "orphaned/MDN/Tools/Search": { + "modified": "2020-09-30T16:50:21.247Z", + "contributors": [ + "chrisdavidmills", + "mfuji09", + "wbamberg", + "Uemmra3", + "hamasaki", + "dynamis" + ] + }, + "Web/API/Document/fullscreenElement": { + "modified": "2020-10-15T21:46:47.293Z", + "contributors": [ + "mfuji09", + "yyss" + ] + }, + "orphaned/Web/API/XMLHttpRequest/openRequest": { + "modified": "2020-07-29T10:05:34.264Z", + "contributors": [ + "eltociear" + ] } } \ No newline at end of file diff --git a/files/ja/orphaned/mdn/tools/search/index.html b/files/ja/orphaned/mdn/tools/search/index.html index fdef55a96b..6bf48de476 100644 --- a/files/ja/orphaned/mdn/tools/search/index.html +++ b/files/ja/orphaned/mdn/tools/search/index.html @@ -1,12 +1,13 @@ --- title: MDN の検索機能 -slug: MDN/Tools/Search +slug: orphaned/MDN/Tools/Search tags: - Guide - MDN Meta - Site-wide - Tools translation_of: MDN/Tools/Search +original_slug: MDN/Tools/Search ---
{{MDNSidebar}}
diff --git a/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html b/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html index 18cc93f844..1cf05a09ec 100644 --- a/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html +++ b/files/ja/orphaned/web/api/xmlhttprequest/openrequest/index.html @@ -1,6 +1,6 @@ --- title: XMLHttpRequest.openRequest() -slug: Web/API/XMLHttpRequest/openRequest +slug: orphaned/Web/API/XMLHttpRequest/openRequest tags: - API - DOM @@ -12,6 +12,7 @@ tags: - openRequest - 非標準 translation_of: Web/API/XMLHttpRequest/openRequest +original_slug: Web/API/XMLHttpRequest/openRequest ---
{{APIRef("XMLHttpRequest")}}{{non-standard_header}}
diff --git a/files/ja/web/api/document/fullscreenelement/index.html b/files/ja/web/api/document/fullscreenelement/index.html index 2c75a57840..b5218b2447 100644 --- a/files/ja/web/api/document/fullscreenelement/index.html +++ b/files/ja/web/api/document/fullscreenelement/index.html @@ -1,6 +1,6 @@ --- title: DocumentOrShadowRoot.fullscreenElement -slug: Web/API/DocumentOrShadowRoot/fullscreenElement +slug: Web/API/Document/fullscreenElement tags: - API - Document @@ -18,6 +18,7 @@ tags: - 全画面 - 読み取り専用 translation_of: Web/API/DocumentOrShadowRoot/fullscreenElement +original_slug: Web/API/DocumentOrShadowRoot/fullscreenElement ---
{{ApiRef("Fullscreen API")}}
diff --git a/files/ru/_redirects.txt b/files/ru/_redirects.txt index 52a1922bb2..7172def406 100644 --- a/files/ru/_redirects.txt +++ b/files/ru/_redirects.txt @@ -340,9 +340,10 @@ /ru/docs/MDN/Kuma/Troubleshooting_KumaScript_errors /ru/docs/MDN/Tools/KumaScript/Troubleshooting /ru/docs/MDN/Structures/Live_samples/Simple_live_sample_demo /ru/docs/orphaned/MDN/Structures/Live_samples/Simple_live_sample_demo /ru/docs/MDN/Tools/Page_watching /ru/docs/orphaned/MDN/Tools/Page_watching +/ru/docs/MDN/Tools/Search /ru/docs/orphaned/MDN/Tools/Search /ru/docs/MDN/Tools/URL-suffix /ru/docs/MDN/Tools/Unsupported_GET_API /ru/docs/MDN/User_guide /ru/docs/conflicting/MDN/Tools -/ru/docs/MDN/User_guide/Advanced_search /ru/docs/MDN/Tools/Search +/ru/docs/MDN/User_guide/Advanced_search /ru/docs/orphaned/MDN/Tools/Search /ru/docs/MDN/User_guide/Deleting_pages /ru/docs/orphaned/MDN/Tools/Page_deletion /ru/docs/MDN/User_guide/Feeds /ru/docs/orphaned/MDN/Tools/Feeds /ru/docs/MDN/User_guide/Linking_to_MDN /ru/docs/orphaned/MDN/About/Linking_to_MDN diff --git a/files/ru/_wikihistory.json b/files/ru/_wikihistory.json index 4a85c9bbb7..b7c8afe669 100644 --- a/files/ru/_wikihistory.json +++ b/files/ru/_wikihistory.json @@ -21607,13 +21607,6 @@ "ksam" ] }, - "MDN/Tools/Search": { - "modified": "2019-03-23T23:07:10.929Z", - "contributors": [ - "wbamberg", - "Mingun" - ] - }, "orphaned/MDN/Tools/Page_deletion": { "modified": "2019-01-16T19:44:31.713Z", "contributors": [ @@ -25988,5 +25981,12 @@ "mrDinckleman", "my8bit" ] + }, + "orphaned/MDN/Tools/Search": { + "modified": "2019-03-23T23:07:10.929Z", + "contributors": [ + "wbamberg", + "Mingun" + ] } } \ No newline at end of file diff --git a/files/ru/orphaned/mdn/tools/search/index.html b/files/ru/orphaned/mdn/tools/search/index.html index 4f175b6ce8..ab4eb3b792 100644 --- a/files/ru/orphaned/mdn/tools/search/index.html +++ b/files/ru/orphaned/mdn/tools/search/index.html @@ -1,11 +1,11 @@ --- title: Использование продвинутого поиска -slug: MDN/Tools/Search +slug: orphaned/MDN/Tools/Search tags: - Guide - MDN translation_of: MDN/Tools/Search -original_slug: MDN/User_guide/Advanced_search +original_slug: MDN/Tools/Search ---
{{MDNSidebar}}

В качестве дополнительной возможности внесения для вкладчиков в MDN у нас есть продвинутый механизм поиска, который позволяется вам искать по исходному коду страницы — то есть, по сырому HTML сайта, с макросами вместо их вывода — что позволяет искать использования определённых макросов, атрибутов HTML и тому подобное.

На текущий момент для использования продвинутого механизма поиска нет пользовательского интерфейса, но вы можете получить к нему доступ посредством специально сформированных URL. Вы можете получить вывод либо на стандартную страницу с результатами поиска по MDN, либо в формате JSON (последнее означает, что вы можете использовать этот механизм, например, из кода на KumaScript). Эта статья описывает, как всем этим пользоваться.

diff --git a/files/zh-cn/_redirects.txt b/files/zh-cn/_redirects.txt index 749c76c805..47924845a6 100644 --- a/files/zh-cn/_redirects.txt +++ b/files/zh-cn/_redirects.txt @@ -406,7 +406,7 @@ /zh-CN/docs/DOM/document.linkColor /zh-CN/docs/Web/API/Document/linkColor /zh-CN/docs/DOM/document.load /zh-CN/docs/Web/API/XMLDocument/load /zh-CN/docs/DOM/document.mozFullScreen /zh-CN/docs/Web/API/Document/fullscreen -/zh-CN/docs/DOM/document.mozFullScreenElement /zh-CN/docs/Web/API/DocumentOrShadowRoot/fullscreenElement +/zh-CN/docs/DOM/document.mozFullScreenElement /zh-CN/docs/Web/API/Document/fullscreenElement /zh-CN/docs/DOM/document.mozFullScreenEnabled /zh-CN/docs/Web/API/Document/fullscreenEnabled /zh-CN/docs/DOM/document.onreadystatechange /en-US/docs/Web/API/Document/readystatechange_event /zh-CN/docs/DOM/document.readyState /zh-CN/docs/Web/API/Document/readyState @@ -1487,13 +1487,14 @@ /zh-CN/docs/Web/API/Document/getSelection /zh-CN/docs/conflicting/Web/API/DocumentOrShadowRoot/getSelection /zh-CN/docs/Web/API/Document/inputEncoding /zh-CN/docs/conflicting/Web/API/Document/characterSet /zh-CN/docs/Web/API/Document/mozFullScreen /zh-CN/docs/Web/API/Document/fullscreen -/zh-CN/docs/Web/API/Document/mozFullScreenElement /zh-CN/docs/Web/API/DocumentOrShadowRoot/fullscreenElement +/zh-CN/docs/Web/API/Document/mozFullScreenElement /zh-CN/docs/Web/API/Document/fullscreenElement /zh-CN/docs/Web/API/Document/mozFullScreenEnabled /zh-CN/docs/Web/API/Document/fullscreenEnabled /zh-CN/docs/Web/API/Document/onreadystatechange /en-US/docs/Web/API/Document/readystatechange_event /zh-CN/docs/Web/API/Document/pointerLockElement /zh-CN/docs/Web/API/DocumentOrShadowRoot/pointerLockElement /zh-CN/docs/Web/API/Document/rouchmove_event /zh-CN/docs/Web/API/Document/touchmove_event /zh-CN/docs/Web/API/Document/styleSheets /zh-CN/docs/conflicting/Web/API/DocumentOrShadowRoot/styleSheets /zh-CN/docs/Web/API/DocumentOrShadowRoot/activeElement /zh-CN/docs/Web/API/Document/activeElement +/zh-CN/docs/Web/API/DocumentOrShadowRoot/fullscreenElement /zh-CN/docs/Web/API/Document/fullscreenElement /zh-CN/docs/Web/API/Document_Object_Model/Preface /zh-CN/docs/conflicting/Web/API/Document_Object_Model /zh-CN/docs/Web/API/Element.classList /zh-CN/docs/Web/API/Element/classList /zh-CN/docs/Web/API/Element.className /zh-CN/docs/Web/API/Element/className @@ -1865,6 +1866,7 @@ /zh-CN/docs/Web/API/WindowTimers/clearTimeout /zh-CN/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout /zh-CN/docs/Web/API/XMLDocument.load /zh-CN/docs/Web/API/XMLDocument/load /zh-CN/docs/Web/API/XMLHttpRequest/FormData /zh-CN/docs/Web/API/FormData +/zh-CN/docs/Web/API/XMLHttpRequest/openRequest /zh-CN/docs/orphaned/Web/API/XMLHttpRequest/openRequest /zh-CN/docs/Web/API/console.dir /zh-CN/docs/Web/API/Console/dir /zh-CN/docs/Web/API/console.group /zh-CN/docs/Web/API/Console/group /zh-CN/docs/Web/API/console.groupCollapsed /zh-CN/docs/Web/API/Console/groupCollapsed @@ -1913,7 +1915,7 @@ /zh-CN/docs/Web/API/document.links /zh-CN/docs/Web/API/Document/links /zh-CN/docs/Web/API/document.location /zh-CN/docs/Web/API/Document/location /zh-CN/docs/Web/API/document.mozFullScreen /zh-CN/docs/Web/API/Document/fullscreen -/zh-CN/docs/Web/API/document.mozFullScreenElement /zh-CN/docs/Web/API/DocumentOrShadowRoot/fullscreenElement +/zh-CN/docs/Web/API/document.mozFullScreenElement /zh-CN/docs/Web/API/Document/fullscreenElement /zh-CN/docs/Web/API/document.mozFullScreenEnabled /zh-CN/docs/Web/API/Document/fullscreenEnabled /zh-CN/docs/Web/API/document.querySelector /zh-CN/docs/Web/API/Document/querySelector /zh-CN/docs/Web/API/document.readyState /zh-CN/docs/Web/API/Document/readyState diff --git a/files/zh-cn/_wikihistory.json b/files/zh-cn/_wikihistory.json index 1ff46f4fb5..b214171611 100644 --- a/files/zh-cn/_wikihistory.json +++ b/files/zh-cn/_wikihistory.json @@ -22785,12 +22785,6 @@ "maicss" ] }, - "Web/API/XMLHttpRequest/openRequest": { - "modified": "2019-03-18T21:28:11.436Z", - "contributors": [ - "Arktische" - ] - }, "Web/API/XMLHttpRequest/overrideMimeType": { "modified": "2020-10-15T22:03:22.512Z", "contributors": [ @@ -47158,14 +47152,6 @@ "ziyunfei" ] }, - "Web/API/DocumentOrShadowRoot/fullscreenElement": { - "modified": "2019-03-24T00:17:55.698Z", - "contributors": [ - "teoli", - "jsx", - "ziyunfei" - ] - }, "Web/API/Document/fullscreenEnabled": { "modified": "2019-03-24T00:17:54.483Z", "contributors": [ @@ -50798,5 +50784,19 @@ "khalid32", "ziyunfei" ] + }, + "Web/API/Document/fullscreenElement": { + "modified": "2019-03-24T00:17:55.698Z", + "contributors": [ + "teoli", + "jsx", + "ziyunfei" + ] + }, + "orphaned/Web/API/XMLHttpRequest/openRequest": { + "modified": "2019-03-18T21:28:11.436Z", + "contributors": [ + "Arktische" + ] } } \ No newline at end of file diff --git a/files/zh-cn/orphaned/web/api/xmlhttprequest/openrequest/index.html b/files/zh-cn/orphaned/web/api/xmlhttprequest/openrequest/index.html index 2fdd0ec2a3..52b110db5b 100644 --- a/files/zh-cn/orphaned/web/api/xmlhttprequest/openrequest/index.html +++ b/files/zh-cn/orphaned/web/api/xmlhttprequest/openrequest/index.html @@ -1,7 +1,8 @@ --- title: XMLHttpRequest.openRequest() -slug: Web/API/XMLHttpRequest/openRequest +slug: orphaned/Web/API/XMLHttpRequest/openRequest translation_of: Web/API/XMLHttpRequest/openRequest +original_slug: Web/API/XMLHttpRequest/openRequest ---

{{APIRef("XMLHttpRequest")}}{{non-standard_header}}

diff --git a/files/zh-cn/web/api/document/fullscreenelement/index.html b/files/zh-cn/web/api/document/fullscreenelement/index.html index d26c1b85df..e4ebc89c0c 100644 --- a/files/zh-cn/web/api/document/fullscreenelement/index.html +++ b/files/zh-cn/web/api/document/fullscreenelement/index.html @@ -1,8 +1,8 @@ --- title: document.mozFullScreenElement -slug: Web/API/DocumentOrShadowRoot/fullscreenElement +slug: Web/API/Document/fullscreenElement translation_of: Web/API/DocumentOrShadowRoot/fullscreenElement -original_slug: Web/API/Document/mozFullScreenElement +original_slug: Web/API/DocumentOrShadowRoot/fullscreenElement ---

{{ ApiRef() }}

概述

-- cgit v1.2.3-54-g00ecf