aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned/web/html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
commit6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch)
tree890e3e27131be010d82ef957fa68db495006cb0e /files/ja/orphaned/web/html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip
unslug ja: move
Diffstat (limited to 'files/ja/orphaned/web/html')
-rw-r--r--files/ja/orphaned/web/html/element/command/index.html109
-rw-r--r--files/ja/orphaned/web/html/element/element/index.html64
-rw-r--r--files/ja/orphaned/web/html/global_attributes/dropzone/index.html48
-rw-r--r--files/ja/orphaned/web/html/html_extensions/index.html12
4 files changed, 233 insertions, 0 deletions
diff --git a/files/ja/orphaned/web/html/element/command/index.html b/files/ja/orphaned/web/html/element/command/index.html
new file mode 100644
index 0000000000..ff02ae0e96
--- /dev/null
+++ b/files/ja/orphaned/web/html/element/command/index.html
@@ -0,0 +1,109 @@
+---
+title: '<command>: HTML コマンド要素'
+slug: Web/HTML/Element/command
+tags:
+ - Command
+ - HTML
+ - HTML commands
+ - HTML5
+ - 'HTML:Element'
+ - 'HTML:Element Reference'
+ - Obsolete
+translation_of: Web/HTML/Element/command
+---
+<div>{{obsolete_header()}}</div>
+
+<p><span class="seoSummary"><strong>HTML のコマンド要素</strong> (<strong><code>&lt;command&gt;</code></strong>) はユーザーが実行することができるコマンドを表します。コマンドは普通、メニューやツールバーのコンテンツの一部として使われます。</span>しかし、ページ上のどこでも使用できます。</p>
+
+<div class="note">
+<p><code>&lt;command&gt;</code> 要素は W3C の仕様書に含まれていますが、 WHATWG の仕様書には含まれておらず、ブラウザーの互換性もありません。非標準で Edge と Firefox でしか対応していませんが、代わりに {{HTMLElement("menuitem")}} 要素を使用してください。</p>
+</div>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row"><a href="/ja/docs/Web/HTML/Content_categories">コンテンツカテゴリ</a></th>
+ <td><a href="/ja/docs/Web/HTML/Content_categories#Flow_content">フローコンテンツ</a>, <a href="/ja/docs/Web/HTML/Content_categories#Phrasing_content">記述コンテンツ</a>, メタデータコンテンツ</td>
+ </tr>
+ <tr>
+ <th scope="row">許可されている内容</th>
+ <td>なし。これは{{Glossary("empty element", "空要素")}}です。</td>
+ </tr>
+ <tr>
+ <th scope="row">タグの省略</th>
+ <td>開始タグは必須です。終了タグは、空要素であるため使用できません。</td>
+ </tr>
+ <tr>
+ <th scope="row">許可されている親要素</th>
+ <td>{{HTMLElement("colgroup")}} のみですが、これは開始要素が必須ではないので暗黙的に定義されることがあります。 {{HTMLElement("colgroup")}} は {{HTMLElement("span")}} を子として持ってはなりません。</td>
+ </tr>
+ <tr>
+ <th scope="row">DOM インターフェイス</th>
+ <td>{{domxref("HTMLCommandElement")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Attributes" name="Attributes">属性</h2>
+
+<p>この要素には<a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>があります。</p>
+
+<dl>
+ <dt>{{htmlattrdef("checked")}}</dt>
+ <dd>コマンドが選択されているかを示します。 <code>type</code> 属性が <code>checkbox</code> または <code>radio</code> でなければ指定できません。</dd>
+ <dt>{{htmlattrdef("disabled")}}</dt>
+ <dd>コマンドが使用不可であることを示します。</dd>
+ <dt>{{htmlattrdef("icon")}}</dt>
+ <dd>コマンドを表す画像を与えます。</dd>
+ <dt>{{htmlattrdef("label")}}</dt>
+ <dd>ユーザに対して表示する、コマンドの名称です。</dd>
+ <dt>{{htmlattrdef("radiogroup")}}</dt>
+ <dd>この属性はコマンド自身を切り替えた時に切り替えられる、 <code>type</code> が <code>radio</code> であるコマンドのグループ名を与えます。この属性は、 <code>type</code> 属性が <code>radio</code> でなければ指定できません。</dd>
+ <dt>{{htmlattrdef("type")}}</dt>
+ <dd>この属性は、コマンドの種類を示します。以下の3つの値のうち1つが使用できます。
+ <ul>
+ <li>
+ <p><code>command</code> または空文字列はデフォルトの状態で、通常のコマンドを示します。</p>
+ </li>
+ <li>
+ <p><code>checkbox</code> は、コマンドがチェックボックスで切り替え可能であることを示します。</p>
+ </li>
+ <li>
+ <p><code>radio</code> は、コマンドがラジオボタンで切り替え可能であることを示します。</p>
+ </li>
+ </ul>
+ </dd>
+</dl>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<pre class="brush: html notranslate">&lt;command type="command" label="Save"
+ icon="icons/save.png" onclick="save()"&gt;
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', 'semantics.html#the-command-element', '&lt;command&gt;')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
+
+<p>{{Compat("html.elements.command")}}</p>
+
+<p>{{ HTMLRef }}</p>
diff --git a/files/ja/orphaned/web/html/element/element/index.html b/files/ja/orphaned/web/html/element/element/index.html
new file mode 100644
index 0000000000..5bc66fccb6
--- /dev/null
+++ b/files/ja/orphaned/web/html/element/element/index.html
@@ -0,0 +1,64 @@
+---
+title: '<element>: カスタム要素 (廃止)'
+slug: Web/HTML/Element/element
+tags:
+ - Element
+ - HTML
+ - Obsolete
+ - Web Components
+ - custom elements
+ - shadow dom
+translation_of: Web/HTML/Element/element
+---
+<div>{{HTMLRef}}{{obsolete_header}}</div>
+
+<p><span class="seoSummary">廃止された <strong>HTML の <code>&lt;element&gt;</code> 要素</strong>は、<a href="/en-US/docs/Web/Web_Components">ウェブコンポーネント</a>の仕様書の一部でした。新しいカスタム DOM 要素を定義するために使用することを意図していました。</span>これは JavaScript からの新しいカスタム要素を生成する方法に取って代わられ、削除されました。</p>
+
+<div class="warning">
+<p><strong>メモ:</strong> この要素は仕様書から削除されました。仕様書の編集者からの情報は<a href="http://lists.w3.org/Archives/Public/public-webapps/2013JulSep/0287.html">こちら</a>を参照してください。</p>
+</div>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories" title="HTML/Content_categories">コンテンツカテゴリー</a></th>
+ <td><a href="/en-US/docs/Web/HTML/Content_categories#Transparent_content">透過的コンテンツ</a></td>
+ </tr>
+ <tr>
+ <th scope="row">許可されているコンテンツ</th>
+ <td>???</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("HTMLElement")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Attributes" name="Attributes">属性</h2>
+
+<p>この要素には<a href="/en-US/docs/Web/HTML/Global_attributes">グローバル属性</a>があります。</p>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<p><code>&lt;element&gt;</code> 要素は以前、<a href="http://w3c.github.io/webcomponents/spec/custom/">カスタム要素</a>の仕様書の草稿に含まれていましたが、削除されました。</p>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("html.elements.element")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>ウェブコンポーネント: {{HTMLElement("content")}}, {{HTMLElement("shadow")}}, {{HTMLElement("slot")}}, {{HTMLElement("template")}}</li>
+</ul>
diff --git a/files/ja/orphaned/web/html/global_attributes/dropzone/index.html b/files/ja/orphaned/web/html/global_attributes/dropzone/index.html
new file mode 100644
index 0000000000..290b577040
--- /dev/null
+++ b/files/ja/orphaned/web/html/global_attributes/dropzone/index.html
@@ -0,0 +1,48 @@
+---
+title: dropzone
+slug: Web/HTML/Global_attributes/dropzone
+tags:
+ - Deprecated
+ - Global attributes
+ - HTML
+ - Reference
+translation_of: Web/HTML/Global_attributes/dropzone
+---
+<div>{{HTMLSidebar("Global_attributes")}}{{deprecated_header}}</div>
+
+<p><strong><code>dropzone</code></strong> <a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a> は、 <a href="/ja/docs/Web/API/HTML_Drag_and_Drop_API">HTML Drag and Drop API</a> を使用して要素上にどのようなコンテンツをドロップできるかを示す列挙型属性です。以下の値を使用できます。</p>
+
+<ul>
+ <li><code>copy</code>: ドロップにより、ドロップした要素のコピーを生成することを示す</li>
+ <li><code>move</code>: ドロップされた要素は新しい場所に移動されることを示す</li>
+ <li><code>link</code>: ドラッグしたデータへのリンクを生成する</li>
+</ul>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5.1', "editing.html#the-dropzone-attribute", "dropzone")}}</td>
+ <td>{{Spec2('HTML5.1')}}</td>
+ <td>{{SpecName('HTML WHATWG')}} のスナップショット、初回定義。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("html.global_attributes.dropzone")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>すべての <a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>。</li>
+</ul>
diff --git a/files/ja/orphaned/web/html/html_extensions/index.html b/files/ja/orphaned/web/html/html_extensions/index.html
new file mode 100644
index 0000000000..6e0d715d5d
--- /dev/null
+++ b/files/ja/orphaned/web/html/html_extensions/index.html
@@ -0,0 +1,12 @@
+---
+title: HTML Extensions
+slug: Web/HTML/HTML_Extensions
+tags:
+ - HTML
+---
+<p>Mozilla ブラウザは、標準を拡張するいくつかの HTML タグをサポートしています。その一部がドキュメント化されています。</p>
+<ul> <li>BLINK</li> <li><a class="internal" href="/ja/HTML/HTML_Extensions/KEYGEN_Tag" title="ja/HTML/HTML Extensions/KEYGEN Tag">KEYGEN</a></li>
+</ul>
+<div class="noinclude">
+<p>{{ languages( { "en": "en/HTML/HTML_Extensions" } ) }}</p>
+</div>