aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/cssomstring/index.html
blob: 3cccdf2d70afe06c7e20c8e4950ac66ce1820317 (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
  - CSSOMString
  - Reference
translation_of: Web/API/CSSOMString
---
<p>{{APIRef("DOM")}}</p>

<p><strong><code>CSSOMString</code></strong><a href="/ja/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="Implementation_differences" name="Implementation_differences">実装の違い</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("CSSOM")}}</li>
 <li>{{domxref("DOMString")}}</li>
 <li>{{domxref("USVString")}}</li>
 <li><a href="/ja/docs/Web/API/DOMString/Binary">バイナリ文字列</a></li>
</ul>