aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/cssomstring/index.html
blob: d7366af22e847ea2c4c7db4693941db0755ae676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: CSSOMString
slug: Web/API/CSSOMString
tags:
  - API
  - CSSOM
  - 레퍼런스
translation_of: Web/API/CSSOMString
---
<p>{{APIRef("DOM")}}</p>

<p><strong><code>CSSOMString</code></strong> 은 <a href="/ko/docs/Web/API/CSS_Object_Model">CSSOM</a> 명세로 문자형 데이터를 나타내기위해 사용되며 {{domxref("DOMString")}} 또는 {{domxref("USVString")}} 을 참조할 수 있습니다. 명세의 <code>CSSOMString</code> 은 브라우저 공급 업체가 <code>DOMString</code> 과 <code>USVString</code> 중 사용하도록 선택한 것에 따라 결정됩니다. 메모리에 문자열을 표현하기 위해 내부적으로 UTF-8을 사용하도록 구현된 브라우저는 명세에서 <code>CSSOMString</code> 이 나타날 때 <code>USVString</code> 을 사용할 수 있지만, 이미 16 비트 시퀀스로 표현된 문자열은 <code>DOMString</code> 을 사용하도록 대신 선택될 것입니다.</p>

<h4 id="구현_차이점">구현 차이점</h4>

<table class="standard-table">
 <tbody>
  <tr>
   <td class="header">브라우저</td>
   <td class="header">CSSOMString 를 위한 DOMString 또는 USVString</td>
  </tr>
  <tr>
   <td>Firefox (Gecko)</td>
   <td>USVString</td>
  </tr>
  <tr>
   <td>Chrome (Blink)</td>
   <td>USVString</td>
  </tr>
  <tr>
   <td>Safari (WebKit)</td>
   <td>USVString</td>
  </tr>
  <tr>
   <td>Edge (EdgeHTML)</td>
   <td>-</td>
  </tr>
  <tr>
   <td>Opera (Blink)</td>
   <td>USVString</td>
  </tr>
 </tbody>
</table>

<h2 id="Specification" name="Specification">명세</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('CSSOM', '#cssomstring-type', 'CSSOMString')}}</td>
   <td>{{Spec2("CSSOM")}}</td>
   <td>초기 정의.</td>
  </tr>
 </tbody>
</table>

<h2 id="함께_보기">함께 보기</h2>

<ul>
 <li>{{jsxref("Global_Objects/String", "String")}}</li>
 <li>{{domxref("CSS_Object_Model", "CSSOM")}}</li>
 <li>{{domxref("DOMString")}}</li>
 <li>{{domxref("USVString")}}</li>
 <li><a href="/en-US/docs/Web/JavaScript/Typed_arrays/String_view">StringView"</a> – a C-like representation of strings based on typed arrays</li>
 <li><a href="/ko/docs/Web/API/DOMString/Binary">바이너리 문자열</a></li>
</ul>