From 554f1bbb0574d8e8a14708f68f5807c74381e8dd Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 4 Jul 2021 00:24:18 +0900 Subject: web/javascript 内の global_objects の browser-compat-data に関する非表示の指示を一括削除 (#1296) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/javascript/reference/global_objects/proxy/index.html | 2 -- .../javascript/reference/global_objects/proxy/proxy/apply/index.html | 2 -- .../reference/global_objects/proxy/proxy/construct/index.html | 2 -- .../reference/global_objects/proxy/proxy/defineproperty/index.html | 2 -- .../reference/global_objects/proxy/proxy/deleteproperty/index.html | 2 -- .../web/javascript/reference/global_objects/proxy/proxy/get/index.html | 2 -- .../global_objects/proxy/proxy/getownpropertydescriptor/index.html | 2 -- .../reference/global_objects/proxy/proxy/getprototypeof/index.html | 2 -- .../web/javascript/reference/global_objects/proxy/proxy/has/index.html | 2 -- files/ja/web/javascript/reference/global_objects/proxy/proxy/index.html | 2 -- .../reference/global_objects/proxy/proxy/isextensible/index.html | 2 -- .../javascript/reference/global_objects/proxy/proxy/ownkeys/index.html | 2 -- .../reference/global_objects/proxy/proxy/preventextensions/index.html | 2 -- .../web/javascript/reference/global_objects/proxy/proxy/set/index.html | 2 -- .../reference/global_objects/proxy/proxy/setprototypeof/index.html | 2 -- .../web/javascript/reference/global_objects/proxy/revocable/index.html | 2 -- 16 files changed, 32 deletions(-) (limited to 'files/ja/web/javascript/reference/global_objects/proxy') diff --git a/files/ja/web/javascript/reference/global_objects/proxy/index.html b/files/ja/web/javascript/reference/global_objects/proxy/index.html index b05f74ff59..7950f663cc 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/index.html @@ -437,8 +437,6 @@ console.log(docCookies.my_cookie1);

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy", 2)}}

関連情報

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/apply/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/apply/index.html index 247cca3d2f..98e5cc6873 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/apply/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/apply/index.html @@ -96,8 +96,6 @@ console.log(p(1, 2, 3)); // "called: 1, 2, 3"

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.apply")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/construct/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/construct/index.html index ba66eb5ad3..e7fb0ca945 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/construct/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/construct/index.html @@ -119,8 +119,6 @@ new p(); // TypeError is thrown, "p" is not a constructor

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.construct")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/defineproperty/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/defineproperty/index.html index 14e9344db1..1465e772d4 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/defineproperty/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/defineproperty/index.html @@ -125,8 +125,6 @@ Object.defineProperty(p, 'name', {

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.defineProperty")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/deleteproperty/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/deleteproperty/index.html index 0d036364e5..719f632402 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/deleteproperty/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/deleteproperty/index.html @@ -111,8 +111,6 @@ console.log(result) // false

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.deleteProperty")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/get/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/get/index.html index 8220917e83..52d121d5d7 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/get/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/get/index.html @@ -118,8 +118,6 @@ p.a; // TypeError is thrown

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.get")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/getownpropertydescriptor/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/getownpropertydescriptor/index.html index 2c37a5c7a9..182952bbab 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/getownpropertydescriptor/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/getownpropertydescriptor/index.html @@ -113,8 +113,6 @@ Object.getOwnPropertyDescriptor(p, 'a'); // TypeError is thrown

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.getOwnPropertyDescriptor")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/getprototypeof/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/getprototypeof/index.html index f8d640060e..db2678635a 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/getprototypeof/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/getprototypeof/index.html @@ -133,8 +133,6 @@ Object.getPrototypeOf(p); // TypeError: expected same prototype value

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.getPrototypeOf")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/has/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/has/index.html index 1686bb5ba4..52f2a58d2a 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/has/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/has/index.html @@ -112,8 +112,6 @@ const p = new Proxy(obj, {

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.has")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/index.html index ddf04c253d..e9ac97ae6f 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/index.html @@ -112,8 +112,6 @@ console.log(proxy.proxied); // "replaced value"

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.Proxy")}}

関連情報

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/isextensible/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/isextensible/index.html index 271be0190b..3f3fabeb7c 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/isextensible/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/isextensible/index.html @@ -104,8 +104,6 @@ Object.isExtensible(p); // TypeError is thrown

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.isExtensible")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/ownkeys/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/ownkeys/index.html index d11a96316c..3511978f16 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/ownkeys/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/ownkeys/index.html @@ -118,8 +118,6 @@ console.log(Object.getOwnPropertyNames(p));

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.ownKeys")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/preventextensions/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/preventextensions/index.html index c3d95cbcfd..5ff1ff2f0b 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/preventextensions/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/preventextensions/index.html @@ -106,8 +106,6 @@ Object.preventExtensions(p); // TypeError is thrown

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.preventExtensions")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/set/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/set/index.html index d405d67fd5..5c2d0f3866 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/set/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/set/index.html @@ -117,8 +117,6 @@ console.log(p.a); // 10

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.set")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/proxy/setprototypeof/index.html b/files/ja/web/javascript/reference/global_objects/proxy/proxy/setprototypeof/index.html index daa7f38d14..d9bb1a7b7c 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/proxy/setprototypeof/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/proxy/setprototypeof/index.html @@ -118,8 +118,6 @@ Reflect.setPrototypeOf(p2, newProto); // throws new Error("custom error")

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.handler.setPrototypeOf")}}

diff --git a/files/ja/web/javascript/reference/global_objects/proxy/revocable/index.html b/files/ja/web/javascript/reference/global_objects/proxy/revocable/index.html index 54470c2b0e..b1f9e54ea8 100644 --- a/files/ja/web/javascript/reference/global_objects/proxy/revocable/index.html +++ b/files/ja/web/javascript/reference/global_objects/proxy/revocable/index.html @@ -80,8 +80,6 @@ typeof proxy // "object", typeof doesn't trigger any trap

ブラウザーの互換性

- -

{{Compat("javascript.builtins.Proxy.revocable")}}

関連情報

-- cgit v1.2.3-54-g00ecf