diff options
author | MDN <actions@users.noreply.github.com> | 2021-09-28 00:50:31 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-09-28 00:50:31 +0000 |
commit | 52e48a7ac7bfc64b78c5aabb86cab4c0d7b88054 (patch) | |
tree | da6d856de98ad3aa793cd8f3986b3fb4bb9c1c71 /files/ja/conflicting | |
parent | 996ebd1c41727cdad43e5709e190132368d0bd9b (diff) | |
download | translated-content-52e48a7ac7bfc64b78c5aabb86cab4c0d7b88054.tar.gz translated-content-52e48a7ac7bfc64b78c5aabb86cab4c0d7b88054.tar.bz2 translated-content-52e48a7ac7bfc64b78c5aabb86cab4c0d7b88054.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting')
-rw-r--r-- | files/ja/conflicting/web/web_components/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/web_components/index.html b/files/ja/conflicting/web/web_components/index.html new file mode 100644 index 0000000000..19162e4678 --- /dev/null +++ b/files/ja/conflicting/web/web_components/index.html @@ -0,0 +1,45 @@ +--- +title: HTML インポート +slug: conflicting/Web/Web_Components +translation_of: Web/Web_Components/HTML_Imports +original_slug: Web/Web_Components/HTML_Imports +--- +<p>{{DefaultAPISidebar("Web Components")}}</p> + +<div class="blockIndicator obsolete"> +<p><strong>Google Chrome 73 で廃止</strong><br> + この機能は廃止されました。まだいくつかのブラウザーで動作するかもしれませんが、いつ削除されてもおかしくないので、使わないようにしましょう。</p> +</div> + +<div class="blockIndicator warning"> +<p>Firefox はこの形式の <em>HTML インポート</em> は提供していません。詳細は<a href="https://hacks.mozilla.org/2015/06/the-state-of-web-components/">状況更新</a>を参照してください。標準化への同意が集まるか、代替機構が発表されるまで、Google の <code><a href="https://github.com/webcomponents/webcomponentsjs">webcomponents.js</a></code> などのポリフィルを使用することができます。</p> +</div> + +<p><em>HTML インポート</em> は <a href="/ja/docs/Web/Web_Components">Web Components</a> のパッケージング機構として使用されることを意図していますが、単独で使用することもできます。</p> + +<p>以下のように、HTML 文書中で <a href="/ja/docs/Web/HTML/Element/link"><code><link></code></a> タグを使用してインポートします。</p> + +<pre><link rel="import" href="myfile.html"></pre> + +<p>リンク種別 <code>import</code> は新設です。</p> + +<h2 id="仕様">仕様</h2> + +<table class="spec-table standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName("HTML Imports")}}</td> + <td>{{Spec2("HTML Imports")}}</td> + <td>初回定義。</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2> + +<p>{{Compat("html.elements.link.rel.import")}}</p> |