From dd970ebde4659015cacb03f3cec08ba3662f76b7 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Sat, 20 Mar 2021 18:32:06 -0700 Subject: remove fx_minversion_inline macro calls (#258) --- .../web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html | 4 ++-- files/ko/web/api/node/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'files/ko/web/api') diff --git a/files/ko/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html b/files/ko/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html index 06baaa4e2a..c3d95b2eac 100644 --- a/files/ko/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html +++ b/files/ko/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html @@ -142,7 +142,7 @@ translation_of: Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB

object store에서 이에 의해 저장된 values가 조직되고 조회되는 하나의 data value. object store는 세 sources 중 하나로부터 key를 이끌어낼 수 있다: key generatorkey path, 또는 명시적으로 지정된 value. key는 그 앞에 있는 것보다 큰 값을 지닌 한 data type의 것이어야 한다. object store의 각 record는 같은 store 내에서 유일한 key를 가져야 한다, 따라서 당신은 주어진 object store에서 같은 key의 여러 records를 가질 수 없다.

-

하나의 key는 다음의 types 중 하나가 될 수 있다: string, date, float, 그리고 array. arrays에 대해, key는 empty value로부터 infinity의 범위가 될 수 있다. 그리고 당신은 array 내에 array를 포함할 수 있다. string 또는 integer의 key만 사용해야 한다는 요구사항은 없다{{ fx_minversion_inline("11") }}.

+

하나의 key는 다음의 types 중 하나가 될 수 있다: string, date, float, 그리고 array. arrays에 대해, key는 empty value로부터 infinity의 범위가 될 수 있다. 그리고 당신은 array 내에 array를 포함할 수 있다. string 또는 integer의 key만 사용해야 한다는 요구사항은 없다.

다른 방법으로, 당신은 index를 사용해서 object store에서 records를 찾을 수 있다.

@@ -160,7 +160,7 @@ translation_of: Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB

object 또는 array가 저장될 때, 그 object 또는 array의  properties 와 values는 적합한 어떤 값이라도 될 수 있다.

-

Blobs와 files가 저장될 수 있다, cf. specification {{ fx_minversion_inline("11") }}.

+

Blobs와 files가 저장될 수 있다, cf. specification.

diff --git a/files/ko/web/api/node/index.html b/files/ko/web/api/node/index.html index ed301eff02..6ad34b9459 100644 --- a/files/ko/web/api/node/index.html +++ b/files/ko/web/api/node/index.html @@ -21,7 +21,7 @@ translation_of: Web/API/Node
{{domxref("Node.baseURI")}} {{readonlyInline}}
Returns a {{domxref("DOMString")}} representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'.
-
{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}} {{ Fx_minversion_inline("3") }}
+
{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}}
(Not available to web content.) The read-only {{ Interface("nsIURI") }} object representing the base URI for the element.
{{domxref("Node.childNodes")}} {{readonlyInline}}
Returns a live {{domxref("NodeList")}} containing all the children of this node. {{domxref("NodeList")}} being live means that if the children of the Node change, the {{domxref("NodeList")}} object is automatically updated.
@@ -39,7 +39,7 @@ translation_of: Web/API/Node
Returns a {{domxref("Node")}} representing the next node in the tree, or null if there isn't such node.
{{domxref("Node.nodeName")}} {{readonlyInline}}
Returns a {{domxref("DOMString")}} containing the name of the Node. The structure of the name will differ with the name type. E.g. An {{domxref("HTMLElement")}} will contain the name of the corresponding tag, like 'audio' for an {{domxref("HTMLAudioElement")}}, a {{domxref("Text")}} node will have the '#text' string, or a {{domxref("Document")}} node will have the '#document' string.
-
{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}{{ Fx_minversion_inline("3") }}
+
{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}
A {{ Interface("nsIPrincipal") }} representing the node principal.
{{domxref("Node.nodeType")}}{{readonlyInline}}
Returns an unsigned short representing the type of the node. Possible values are: -- cgit v1.2.3-54-g00ecf