From f547adc9a91b22cdc678b4ec83e65c1e35cf72d5 Mon Sep 17 00:00:00 2001 From: MDN Date: Sun, 30 May 2021 01:21:51 +0000 Subject: [CRON] sync translated content --- files/fr/_redirects.txt | 1 + files/fr/_wikihistory.json | 12 +-- .../fr/orphaned/web/api/element/tabstop/index.html | 31 ++++++++ files/fr/web/api/element/tabstop/index.html | 30 ------- files/ja/_redirects.txt | 1 + files/ja/_wikihistory.json | 12 +-- .../web/api/htmlelement/forcespellcheck/index.html | 33 ++++++++ .../web/api/htmlelement/forcespellcheck/index.html | 32 -------- files/zh-cn/_redirects.txt | 1 + files/zh-cn/_wikihistory.json | 12 +-- .../web/api/htmlelement/forcespellcheck/index.html | 93 ++++++++++++++++++++++ .../web/api/htmlelement/forcespellcheck/index.html | 92 --------------------- 12 files changed, 178 insertions(+), 172 deletions(-) create mode 100644 files/fr/orphaned/web/api/element/tabstop/index.html delete mode 100644 files/fr/web/api/element/tabstop/index.html create mode 100644 files/ja/orphaned/web/api/htmlelement/forcespellcheck/index.html delete mode 100644 files/ja/web/api/htmlelement/forcespellcheck/index.html create mode 100644 files/zh-cn/orphaned/web/api/htmlelement/forcespellcheck/index.html delete mode 100644 files/zh-cn/web/api/htmlelement/forcespellcheck/index.html (limited to 'files') diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt index 443db37789..ac33e81c1d 100644 --- a/files/fr/_redirects.txt +++ b/files/fr/_redirects.txt @@ -3760,6 +3760,7 @@ /fr/docs/Web/API/Element/ongotpointercapture /fr/docs/Web/API/GlobalEventHandlers/ongotpointercapture /fr/docs/Web/API/Element/onwheel /fr/docs/Web/API/GlobalEventHandlers/onwheel /fr/docs/Web/API/Element/removeChild /fr/docs/Web/API/Node/removeChild +/fr/docs/Web/API/Element/tabStop /fr/docs/orphaned/Web/API/Element/tabStop /fr/docs/Web/API/ElementTraversal /fr/docs/orphaned/Web/API/ElementTraversal /fr/docs/Web/API/Event.initEvent /fr/docs/Web/API/Event/initEvent /fr/docs/Web/API/Event.stopPropagation /fr/docs/Web/API/Event/stopPropagation diff --git a/files/fr/_wikihistory.json b/files/fr/_wikihistory.json index 5eae6a86f7..6ea966ba41 100644 --- a/files/fr/_wikihistory.json +++ b/files/fr/_wikihistory.json @@ -15804,12 +15804,6 @@ "loella16" ] }, - "Web/API/Element/tabStop": { - "modified": "2019-03-18T21:38:50.214Z", - "contributors": [ - "loella16" - ] - }, "Web/API/Element/tagName": { "modified": "2019-03-23T23:53:29.906Z", "contributors": [ @@ -45046,6 +45040,12 @@ "loella16" ] }, + "orphaned/Web/API/Element/tabStop": { + "modified": "2019-03-18T21:38:50.214Z", + "contributors": [ + "loella16" + ] + }, "orphaned/Web/API/ElementTraversal": { "modified": "2019-03-18T21:39:02.443Z", "contributors": [ diff --git a/files/fr/orphaned/web/api/element/tabstop/index.html b/files/fr/orphaned/web/api/element/tabstop/index.html new file mode 100644 index 0000000000..26aa5f7820 --- /dev/null +++ b/files/fr/orphaned/web/api/element/tabstop/index.html @@ -0,0 +1,31 @@ +--- +title: Element.tabStop +slug: orphaned/Web/API/Element/tabStop +tags: + - API + - DOM + - Element + - Propriétés + - touche tabulation +translation_of: Web/API/Element/tabStop +original_slug: Web/API/Element/tabStop +--- +

{{APIRef("DOM")}}{{non-standard_header}}{{obsolete_header}}

+ +

La propriété tabStop de l'interface {{domxref("Element")}} renvoie un {{jsxref("Boolean")}} indiquant si l'élément peut recevoir le focus d'entrée via la touche de tabulation. Si l'élément spécifié est un onglet shadow, la navigation est déléguée à ses enfants.

+ +

La propriété a été proposée pour ajouter une fonctionnalité de tabulation aux éléments personnalisés. Alors qu'avec la propriété {{domxref("HTMLElement.tabIndex", "tabIndex")}} existante, il est nécessaire de spécifier un ordre pour que la touche tabulation soit utilisable sur un élément. La propriété tabStop devait découpler la propriété d'utilisation de la tabulation de l'index. Après les retours d'expérience, cette propriété a été supprimée de documentation de conception (en) et remplacée par {{domxref("ShadowRoot.delegatesFocus")}}.

+ +

Syntaxe

+ +
var isTabStop = element.tabStop;
+element.tabStop = (true|false);
+
+ +

Exemple

+ +
// TBD
+ +

Compatibilité des navigateurs

+ +

{{Compat("api.Element.tabStop")}}

diff --git a/files/fr/web/api/element/tabstop/index.html b/files/fr/web/api/element/tabstop/index.html deleted file mode 100644 index 8b9103a70b..0000000000 --- a/files/fr/web/api/element/tabstop/index.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Element.tabStop -slug: Web/API/Element/tabStop -tags: - - API - - DOM - - Element - - Propriétés - - touche tabulation -translation_of: Web/API/Element/tabStop ---- -

{{APIRef("DOM")}}{{non-standard_header}}{{obsolete_header}}

- -

La propriété tabStop de l'interface {{domxref("Element")}} renvoie un {{jsxref("Boolean")}} indiquant si l'élément peut recevoir le focus d'entrée via la touche de tabulation. Si l'élément spécifié est un onglet shadow, la navigation est déléguée à ses enfants.

- -

La propriété a été proposée pour ajouter une fonctionnalité de tabulation aux éléments personnalisés. Alors qu'avec la propriété {{domxref("HTMLElement.tabIndex", "tabIndex")}} existante, il est nécessaire de spécifier un ordre pour que la touche tabulation soit utilisable sur un élément. La propriété tabStop devait découpler la propriété d'utilisation de la tabulation de l'index. Après les retours d'expérience, cette propriété a été supprimée de documentation de conception (en) et remplacée par {{domxref("ShadowRoot.delegatesFocus")}}.

- -

Syntaxe

- -
var isTabStop = element.tabStop;
-element.tabStop = (true|false);
-
- -

Exemple

- -
// TBD
- -

Compatibilité des navigateurs

- -

{{Compat("api.Element.tabStop")}}

diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 35f36de624..18b1668683 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -3803,6 +3803,7 @@ /ja/docs/Web/API/HTMLElement/blur /ja/docs/Web/API/HTMLOrForeignElement/blur /ja/docs/Web/API/HTMLElement/dataset /ja/docs/Web/API/HTMLOrForeignElement/dataset /ja/docs/Web/API/HTMLElement/focus /ja/docs/Web/API/HTMLOrForeignElement/focus +/ja/docs/Web/API/HTMLElement/forceSpellCheck /ja/docs/orphaned/Web/API/HTMLElement/forceSpellCheck /ja/docs/Web/API/HTMLElement/nonce /ja/docs/Web/API/HTMLOrForeignElement/nonce /ja/docs/Web/API/HTMLElement/style /ja/docs/Web/API/ElementCSSInlineStyle/style /ja/docs/Web/API/HTMLElement/tabIndex /ja/docs/Web/API/HTMLOrForeignElement/tabIndex diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index ab35d6cc64..d6db522215 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -16278,12 +16278,6 @@ "dextra" ] }, - "Web/API/HTMLElement/forceSpellCheck": { - "modified": "2020-10-15T22:22:28.662Z", - "contributors": [ - "Wind1808" - ] - }, "Web/API/HTMLElement/gotpointercapture_event": { "modified": "2020-10-15T22:20:35.188Z", "contributors": [ @@ -52388,6 +52382,12 @@ "mikamikuh" ] }, + "orphaned/Web/API/HTMLElement/forceSpellCheck": { + "modified": "2020-10-15T22:22:28.662Z", + "contributors": [ + "Wind1808" + ] + }, "orphaned/Web/API/HTMLHyperlinkElementUtils": { "modified": "2020-10-15T22:23:06.944Z", "contributors": [ diff --git a/files/ja/orphaned/web/api/htmlelement/forcespellcheck/index.html b/files/ja/orphaned/web/api/htmlelement/forcespellcheck/index.html new file mode 100644 index 0000000000..3e0c2b978f --- /dev/null +++ b/files/ja/orphaned/web/api/htmlelement/forcespellcheck/index.html @@ -0,0 +1,33 @@ +--- +title: HTMLElement.forceSpellCheck() +slug: orphaned/Web/API/HTMLElement/forceSpellCheck +tags: + - API + - Experimental + - HTML DOM + - HTMLElement + - Method + - Reference +translation_of: Web/API/HTMLElement/forceSpellCheck +original_slug: Web/API/HTMLElement/forceSpellCheck +--- +

{{ APIRef("HTML DOM") }}{{SeeCompatTable}}

+ +

{{domxref("HTMLElement")}} インターフェイスの forceSpellCheck() メソッドは、ユーザーが要素にフォーカスしていない場合でも、HTML 要素のスペルチェックと文法チェックを強制します。 このメソッドは、{{glossary("user agent","ユーザーエージェント")}} の振る舞いをオーバーライドします。 チェックの特定のユーザーインターフェイス(赤い下線が表示されるかどうかなど)は、ユーザーエージェントによって決定されます。

+ +

構文

+ +
element.forceSpellCheck()
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.HTMLElement.forceSpellCheck")}}

+ +

関連情報

+ + diff --git a/files/ja/web/api/htmlelement/forcespellcheck/index.html b/files/ja/web/api/htmlelement/forcespellcheck/index.html deleted file mode 100644 index 107b076917..0000000000 --- a/files/ja/web/api/htmlelement/forcespellcheck/index.html +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: HTMLElement.forceSpellCheck() -slug: Web/API/HTMLElement/forceSpellCheck -tags: - - API - - Experimental - - HTML DOM - - HTMLElement - - Method - - Reference -translation_of: Web/API/HTMLElement/forceSpellCheck ---- -

{{ APIRef("HTML DOM") }}{{SeeCompatTable}}

- -

{{domxref("HTMLElement")}} インターフェイスの forceSpellCheck() メソッドは、ユーザーが要素にフォーカスしていない場合でも、HTML 要素のスペルチェックと文法チェックを強制します。 このメソッドは、{{glossary("user agent","ユーザーエージェント")}} の振る舞いをオーバーライドします。 チェックの特定のユーザーインターフェイス(赤い下線が表示されるかどうかなど)は、ユーザーエージェントによって決定されます。

- -

構文

- -
element.forceSpellCheck()
- -

ブラウザーの互換性

- - - -

{{Compat("api.HTMLElement.forceSpellCheck")}}

- -

関連情報

- - diff --git a/files/zh-cn/_redirects.txt b/files/zh-cn/_redirects.txt index 32a464ddf5..a8a1ddf3c5 100644 --- a/files/zh-cn/_redirects.txt +++ b/files/zh-cn/_redirects.txt @@ -1618,6 +1618,7 @@ /zh-CN/docs/Web/API/HTMLElement/blur /zh-CN/docs/Web/API/HTMLOrForeignElement/blur /zh-CN/docs/Web/API/HTMLElement/dataset /zh-CN/docs/Web/API/HTMLOrForeignElement/dataset /zh-CN/docs/Web/API/HTMLElement/focus /zh-CN/docs/Web/API/HTMLOrForeignElement/focus +/zh-CN/docs/Web/API/HTMLElement/forceSpellCheck /zh-CN/docs/orphaned/Web/API/HTMLElement/forceSpellCheck /zh-CN/docs/Web/API/HTMLElement/nonce /zh-CN/docs/Web/API/HTMLOrForeignElement/nonce /zh-CN/docs/Web/API/HTMLElement/style /zh-CN/docs/Web/API/ElementCSSInlineStyle/style /zh-CN/docs/Web/API/HTMLElement/tabIndex /zh-CN/docs/Web/API/HTMLOrForeignElement/tabIndex diff --git a/files/zh-cn/_wikihistory.json b/files/zh-cn/_wikihistory.json index e289aa8522..e9d6f5f614 100644 --- a/files/zh-cn/_wikihistory.json +++ b/files/zh-cn/_wikihistory.json @@ -15121,12 +15121,6 @@ "Dewang" ] }, - "Web/API/HTMLElement/forceSpellCheck": { - "modified": "2019-03-18T21:38:32.415Z", - "contributors": [ - "varcat" - ] - }, "Web/API/HTMLElement/hidden": { "modified": "2019-03-23T22:07:13.819Z", "contributors": [ @@ -50267,6 +50261,12 @@ "wuCrio" ] }, + "orphaned/Web/API/HTMLElement/forceSpellCheck": { + "modified": "2019-03-18T21:38:32.415Z", + "contributors": [ + "varcat" + ] + }, "orphaned/Web/API/HTMLHyperlinkElementUtils": { "modified": "2020-10-15T21:33:08.803Z", "contributors": [ diff --git a/files/zh-cn/orphaned/web/api/htmlelement/forcespellcheck/index.html b/files/zh-cn/orphaned/web/api/htmlelement/forcespellcheck/index.html new file mode 100644 index 0000000000..cde999ef48 --- /dev/null +++ b/files/zh-cn/orphaned/web/api/htmlelement/forcespellcheck/index.html @@ -0,0 +1,93 @@ +--- +title: HTMLElement.forceSpellCheck() +slug: orphaned/Web/API/HTMLElement/forceSpellCheck +translation_of: Web/API/HTMLElement/forceSpellCheck +original_slug: Web/API/HTMLElement/forceSpellCheck +--- +

{{ APIRef("HTML DOM") }}{{SeeCompatTable}}

+ +

强制对HTML元素进行拼写和语法检查,即使用户没有关注元素。此方法将覆盖浏览器的行为。检查的界面,例如是否出现红色下划线,由浏览器确定。

+ +

Syntax

+ +
element.forceSpellCheck()
+ +

Specifications

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', 'interaction.html#dom-forcespellcheck', 'HTMLElement.forceSpellCheck()')}}{{Spec2('HTML WHATWG')}}Initial definition
{{SpecName('HTML5.1', 'editing.html#dom-forcespellcheck', 'HTMLElement.forceSpellCheck')}}{{Spec2('HTML5.1')}}First W3C snapshot of {{SpecName('HTML WHATWG')}} with the method defined in it.
+ +

Browser compatibility

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support{{CompatUnknown}}{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support{{CompatUnknown}}{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
+
+ +

See Also

+ + diff --git a/files/zh-cn/web/api/htmlelement/forcespellcheck/index.html b/files/zh-cn/web/api/htmlelement/forcespellcheck/index.html deleted file mode 100644 index 779c6095a6..0000000000 --- a/files/zh-cn/web/api/htmlelement/forcespellcheck/index.html +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: HTMLElement.forceSpellCheck() -slug: Web/API/HTMLElement/forceSpellCheck -translation_of: Web/API/HTMLElement/forceSpellCheck ---- -

{{ APIRef("HTML DOM") }}{{SeeCompatTable}}

- -

强制对HTML元素进行拼写和语法检查,即使用户没有关注元素。此方法将覆盖浏览器的行为。检查的界面,例如是否出现红色下划线,由浏览器确定。

- -

Syntax

- -
element.forceSpellCheck()
- -

Specifications

- - - - - - - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName('HTML WHATWG', 'interaction.html#dom-forcespellcheck', 'HTMLElement.forceSpellCheck()')}}{{Spec2('HTML WHATWG')}}Initial definition
{{SpecName('HTML5.1', 'editing.html#dom-forcespellcheck', 'HTMLElement.forceSpellCheck')}}{{Spec2('HTML5.1')}}First W3C snapshot of {{SpecName('HTML WHATWG')}} with the method defined in it.
- -

Browser compatibility

- -

{{CompatibilityTable}}

- -
- - - - - - - - - - - - - - - - - - - -
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support{{CompatUnknown}}{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
-
- -
- - - - - - - - - - - - - - - - - - - -
FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support{{CompatUnknown}}{{CompatNo}}{{CompatNo}}{{CompatUnknown}}{{CompatUnknown}}
-
- -

See Also

- - -- cgit v1.2.3-54-g00ecf