aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/html/element/content/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/html/element/content/index.html')
-rw-r--r--files/ja/web/html/element/content/index.html109
1 files changed, 109 insertions, 0 deletions
diff --git a/files/ja/web/html/element/content/index.html b/files/ja/web/html/element/content/index.html
new file mode 100644
index 0000000000..be8758de88
--- /dev/null
+++ b/files/ja/web/html/element/content/index.html
@@ -0,0 +1,109 @@
+---
+title: '<content>: シャドウ DOM のコンテンツのプレイスホルダー要素'
+slug: Web/HTML/Element/content
+tags:
+ - Deprecated
+ - Element
+ - HTML
+ - NeedsContent
+ - Reference
+ - Web
+ - Web Components
+translation_of: Web/HTML/Element/content
+---
+<div>{{Deprecated_header}}</div>
+
+<p><span class="seoSummary"><strong>HTML の <code>&lt;content&gt;</code> 要素</strong>は、一連の<a href="/docs/Web/Web_Components">ウェブコンポーネント</a>技術の廃止された部分であり、 <a href="/en-US/docs/Web/Web_Components/Shadow_DOM">Shadow DOM</a> の中で {{glossary("insertion point")}} として使われていましたが、通常の HTML で利用することは意図されていませんでした。</span>現在では DOM の中で Shadow DOM を挿入することができる場所を作成する {{HTMLElement("slot")}} 要素に置き換えられました。</p>
+
+<div class="note">
+<p><strong>メモ:</strong> この要素は初期のドラフト仕様に存在し、いくつかのブラウザーで実装されていましたが、後のバージョンの仕様書から削除され、使用するべきではありません。ここで文書化しているのは、その間に書かれたコードを、新しいバージョンの仕様書で動作するように適合させるのを支援するためです。</p>
+</div>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row"><a href="/docs/Web/HTML/Content_categories" title="HTML/Content_categories">コンテンツカテゴリー</a></th>
+ <td><a href="/docs/Web/HTML/Content_categories#Transparent_content_model" title="HTML/Content_categories#Transparent_content_model">透過的コンテンツ</a></td>
+ </tr>
+ <tr>
+ <th scope="row">許可されている内容</th>
+ <td><a href="/docs/Web/HTML/Content_categories#Flow_content">フローコンテンツ</a></td>
+ </tr>
+ <tr>
+ <th scope="row">タグの省略</th>
+ <td>{{no_tag_omission}}</td>
+ </tr>
+ <tr>
+ <th scope="row">許可されている親要素</th>
+ <td>フローコンテンツを受け入れるすべての要素。</td>
+ </tr>
+ <tr>
+ <th scope="row">DOM インターフェイス</th>
+ <td>{{domxref("HTMLContentElement")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Attributes" name="Attributes">属性</h2>
+
+<p>この要素は<a href="https://developer.mozilla.org/ja/docs/HTML/Global_attributes" title="HTML/Global attributes">グローバル属性</a>を持ちます。</p>
+
+<dl>
+ <dt><code>select</code></dt>
+ <dd>コンマ区切りで複数のセレクターを指定できます。これらは CSS セレクターと同じ文法です。 <code>&lt;content&gt;</code> 要素が指定された場所に挿入する内容を指定します。</dd>
+</dl>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>以下に <code>&lt;content&gt;</code> 要素の使用例を示します。これは必要なものがすべて含まれている HTML ファイルです。</p>
+
+<div class="note">
+<p><strong>メモ:</strong> 以下のコードを動作させるには、ブラウザーが Web Components をサポートしている必要があります。 <a href="/ja/docs/Web/Web_Components#Enabling_Web_Components_in_Firefox">Firefox で Web Components を有効にするには</a>の記事も参照してください。</p>
+</div>
+
+<pre class="brush: html">&lt;html&gt;
+ &lt;head&gt;&lt;/head&gt;
+ &lt;body&gt;
+ &lt;!-- The original content accessed by &lt;content&gt; --&gt;
+ &lt;div&gt;
+ &lt;h4&gt;My Content Heading&lt;/h4&gt;
+ &lt;p&gt;My content text&lt;/p&gt;
+ &lt;/div&gt;
+
+ &lt;script&gt;
+ // Get the &lt;div&gt; above.
+ var myContent = document.querySelector('div');
+ // Create a shadow DOM on the &lt;div&gt;
+ var shadowroot = myContent.createShadowRoot();
+ // Insert into the shadow DOM a new heading and
+ // part of the original content: the &lt;p&gt; tag.
+ shadowroot.innerHTML =
+ '&lt;h2&gt;Inserted Heading&lt;/h2&gt; &lt;content select="p"&gt;&lt;/content&gt;';
+ &lt;/script&gt;
+
+ &lt;/body&gt;
+&lt;/html&gt;
+</pre>
+
+<p>ブラウザーで表示した場合、以下のように表示されます。</p>
+
+<p><img alt="content example" src="https://mdn.mozillademos.org/files/10077/content-example.png" style="height: 383px; width: 716px;"></p>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<p>この要素は現在、どの仕様書でも定義されていません。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力したいのであれば、 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("html.elements.content")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/Web_Components">Web Components</a></li>
+ <li>{{HTMLElement("shadow")}}, {{HTMLElement("slot")}}, {{HTMLElement("template")}}, {{HTMLElement("element")}}</li>
+</ul>
+
+<div>{{HTMLRef}}</div>