From 634e45b21248fbb508edb7988483a4b9cf1fff7a Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 25 Feb 2021 18:24:02 +0100 Subject: sync: move --- .../web/api/document/fullscreenelement/index.html | 81 ++++++++++++++++++++++ .../fullscreenelement/index.html | 81 ---------------------- .../web/api/xmlhttprequest/openrequest/index.html | 18 ----- 3 files changed, 81 insertions(+), 99 deletions(-) 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/web/api') 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/web/api') 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