From ee778d6eea54935fd05022e0ba8c49456003381a Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:48:24 +0100 Subject: unslug ko: move --- .../orphaned/web/html/element/command/index.html | 111 +++++++++++++++++++++ .../orphaned/web/html/element/element/index.html | 57 +++++++++++ .../web/html/global_attributes/dropzone/index.html | 53 ++++++++++ 3 files changed, 221 insertions(+) create mode 100644 files/ko/orphaned/web/html/element/command/index.html create mode 100644 files/ko/orphaned/web/html/element/element/index.html create mode 100644 files/ko/orphaned/web/html/global_attributes/dropzone/index.html (limited to 'files/ko/orphaned/web/html') diff --git a/files/ko/orphaned/web/html/element/command/index.html b/files/ko/orphaned/web/html/element/command/index.html new file mode 100644 index 0000000000..8353384f2a --- /dev/null +++ b/files/ko/orphaned/web/html/element/command/index.html @@ -0,0 +1,111 @@ +--- +title: +slug: Web/HTML/Element/command +tags: + - HTML + - Obsolete + - Reference + - Web +translation_of: Web/HTML/Element/command +--- +
{{obsolete_header()}}
+ +

The HTML Command element (<command>) represents a command which the user can invoke. Commands are often used as part of a context menu or toolbar. However, they can be used anywhere on the page.

+ +
+

The <command> element is included in the W3C specification, but not in the WHATWG specification, and browser support is nonexistent. You should use the {{HTMLElement("menuitem")}} element instead, although that element is non-standard and only supported in Edge and Firefox.

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Content categoriesFlow content, phrasing content, metadata content.
Permitted contentNone, it is an {{Glossary("empty element")}}.
Tag omissionThe start tag is mandatory, but, as it is a void element, the use of an end tag is forbidden.
Permitted parent elements{{HTMLElement("colgroup")}} only, though it can be implicitly defined as its start tag is not mandatory. The {{HTMLElement("colgroup")}} must not have a {{HTMLElement("span")}} as child.
DOM interface{{domxref("HTMLCommandElement")}}
+ +

Attributes

+ +

This element includes the global attributes.

+ +
+
{{htmlattrdef("checked")}}
+
Indicates whether the command is selected. Must be omitted unless the type attribute is checkbox or radio.
+
{{htmlattrdef("disabled")}}
+
Iindicates that the command is not available.
+
{{htmlattrdef("icon")}}
+
Gives a picture which represents the command.
+
{{htmlattrdef("label")}}
+
The name of the command as shown to the user.
+
{{htmlattrdef("radiogroup")}}
+
This attribute gives the name of the group of commands, with a type of radio, that will be toggled when the command itself is toggled. This attribute must be omitted unless the type attribute is radio.
+
{{htmlattrdef("type")}}
+
This attribute indicates the kind of command. This can be one of three values. +
    +
  • +

    command or empty which is the default state and indicates that this is a normal command.

    +
  • +
  • +

    checkbox indicates that the command can be toggled using a checkbox.

    +
  • +
  • +

    radio indicates that the command can be toggled using a radio button.

    +
  • +
+
+
+ +

Examples

+ +
<command type="command" label="Save"
+    icon="icons/save.png" onclick="save()">
+
+ +

Specifications

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', '#commands')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'semantics.html#the-command-element', '<command>')}}{{Spec2('HTML5 W3C')}} 
+ +

Browser compatibility

+ + + +

{{Compat("html.elements.command")}}

+ +

{{ HTMLRef }}

diff --git a/files/ko/orphaned/web/html/element/element/index.html b/files/ko/orphaned/web/html/element/element/index.html new file mode 100644 index 0000000000..be045093a5 --- /dev/null +++ b/files/ko/orphaned/web/html/element/element/index.html @@ -0,0 +1,57 @@ +--- +title: +slug: Web/HTML/Element/element +translation_of: Web/HTML/Element/element +--- +
{{HTMLRef}}{{obsolete_header}}
+ +

The obsolete HTML <element> element was part of the Web Components specification; it was intended to be used to define new custom DOM elements. It was removed in favor of a JavaScript-driven approach for creating new custom elements.

+ +
+

Note: This element has been removed from the specification. See this for more information from the editor of the specification.

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Content categoriesTransparent content.
Permitted content???
Tag omission{{no_tag_omission}}
Permitted parent elements???
DOM interface{{domxref("HTMLElement")}}
+ +

Attributes

+ +

This element includes the global attributes.

+ +

Specifications

+ +

The <element> element was formerly in a draft specification of Custom Elements but it has been removed.

+ +

Browser compatibility

+ + + +

{{Compat("html.elements.element")}}

+ +

See also

+ +
    +
  • Web components: {{HTMLElement("content")}}, {{HTMLElement("shadow")}}, {{HTMLElement("slot")}}, and {{HTMLElement("template")}}
  • +
diff --git a/files/ko/orphaned/web/html/global_attributes/dropzone/index.html b/files/ko/orphaned/web/html/global_attributes/dropzone/index.html new file mode 100644 index 0000000000..15d26aad15 --- /dev/null +++ b/files/ko/orphaned/web/html/global_attributes/dropzone/index.html @@ -0,0 +1,53 @@ +--- +title: dropzone +slug: Web/HTML/Global_attributes/dropzone +tags: + - Deprecated + - Global attributes + - HTML + - Reference +translation_of: Web/HTML/Global_attributes/dropzone +--- +
{{HTMLSidebar("Global_attributes")}}{{deprecated_header}}
+ +

dropzone 전역 특성은 열거형 속성으로 한 요소에 어떤 형식의 컨텐츠가 Drag and Drop API를 이용해 드랍될 수 있는지를 나타냅니다. 이 속성은 다음의 값을 가질 수 있습니다:

+ +
    +
  • copy, 드랍할 때 드래그되는 요소의 사본이 생성됨을 나타냅니다.
  • +
  • move, 드래그되는 요소가 새로운 위치로 이동할 것임을 나타냅니다.
  • +
  • link, 드래그되는 데이터에 대한 링크가 생성될 것임을 나타냅니다.
  • +
+ +

명세

+ + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', "interaction.html#the-dropzone-attribute", "dropzone")}}{{Spec2('HTML WHATWG')}}No change from latest snapshot, {{SpecName('HTML5.1')}}
{{SpecName('HTML5.1', "editing.html#the-dropzone-attribute", "dropzone")}}{{Spec2('HTML5.1')}}Snapshot of {{SpecName('HTML WHATWG')}}, initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("html.global_attributes.dropzone")}}

+ +

같이 보기

+ + -- cgit v1.2.3-54-g00ecf