aboutsummaryrefslogtreecommitdiff
path: root/files/ja/mozilla/firefox/releases/12/index.html
blob: 24e3ae332c4ca4a881462c55713b48f454e20e0d (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
---
title: Firefox 12 for developers
slug: Mozilla/Firefox/Releases/12
tags:
  - Firefox
  - Firefox 12
  - Gecko 12
  - Web Development
translation_of: Mozilla/Firefox/Releases/12
---
<p>Firefox 12 は 米国時間 2012 年 4 月 24 日にリリースされました。この記事は開発者に影響がある Firefox 12 での変更点をまとめています。</p>

<h2 id="Web_開発者向けの変更点一覧">Web 開発者向けの変更点一覧</h2>

<h3 id="HTML">HTML</h3>

<ul>
 <li><code>title</code> の値に含めた改行文字が反映され、複数行のツールチップを表示できるようになりました。</li>
 <li>JavaScript が無効である場合、<a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html" title="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html">仕様</a> に従ったフォールバックコンテンツではなく {{ HTMLElement("canvas") }} 要素が表示されていましたが、フォールバックコンテンツが表示されるようになりました。</li>
</ul>

<h3 id="CSS">CSS</h3>

<ul>
 <li>{{ cssxref("text-align-last") }} プロパティに対応しました。(接頭辞付き)</li>
</ul>

<h3 id="JavaScript">JavaScript</h3>

<ul>
 <li><a href="/ja/docs/JavaScript/Sharp_variables_in_JavaScript" title="JavaScript/Sharp_variables_in_JavaScript">シャープ変数</a> (Netscape 由来の非標準拡張仕様) への対応が打ち切られました。</li>
</ul>

<h3 id="DOM">DOM</h3>

<ul>
 <li><a href="/ja/docs/DOM/DOMParser" title="DOM/DOMParser">DOMParser</a> が HTML ドキュメントのソース解析に対応しました。</li>
 <li>{{ domxref("XMLHttpRequest") }}<code>timeout</code> プロパティと {{ domxref("XMLHttpRequestEventTarget") }} インタフェース 上の <code>ontimeout</code> イベントハンドラである "timeout" イベントを用いた、タイムアウトがサポートされました。</li>
 <li>{{ domxref("XMLHttpRequest") }}<a href="/ja/docs/data_URIs" title="data URIs"><code> data:</code> URI</a> から読み込めるようになりました。</li>
 <li>{{ domxref("XMLHttpRequest") }} で巨大なデータをダウンロードしているとき、<code>responseType</code> に "moz-blob" を設定していると、 これまでに受信したデータのすべてを含む {{ domxref("Blob") }} であるレスポンスを参照できる progress イベントハンドラが定期的に呼び出されるようになりました。これによって、progress ハンドラでデータのすべてが到着するまで待つことなしにデータを処理し始められます。</li>
 <li>Gecko が Android 上で <a href="/ja/docs/DOM/Touch_events" title="DOM/Touch_events">マルチタッチ</a> をサポートしました。今までは一度に一つのタッチ操作しか認識しかできませんでした。</li>
 <li>エディタ (フォーム) 上で IME を使った文字入力を行っている場合、従来は確定後に <code>input</code> イベントが発生していましたが、Firefox 12 では、IME で編集中の文字列が変更されたことを示す <code>compositionupdate</code> イベントの直後にも <code>input</code> イベントが発生するようになりました。これにより、<code>input</code> イベントハンドラを使って、日本語入力中にも未確定文字列を含めたフォームの入力内容を取得することが可能となりました。</li>
 <li>DOM 4 仕様で定義されている {{ domxref("DOMError") }} が実装されました。</li>
 <li>{{ domxref("Document.createNodeIterator()") }} メソッドが DOM 4 仕様に適合するように更新されました。これにより、<code>whatToShow</code> および<code> filter 引数がオプションになり、</code><code>非標準の 4 番目の引数である entityReferenceExpansion</code> が削除されます。</li>
 <li>{{ domxref("Blob") }} インタフェースの <code>slice() メソッドは符号付き 64 ビット整数の範囲外の </code><code>start</code> の値と <code>end</code> の値を正しく受け取れない<code>バグによる影響を受けていましたが、この問題は修正されました。</code></li>
 <li>{{ domxref("element.getBoundingClientRect()") }} メソッドが要素の矩形の境界を算出するときに <a href="/ja/docs/CSS/Using_CSS_transforms" title="CSS/Using_CSS_transforms">CSS transforms</a> の効果を考慮するようになりました。</li>
</ul>

<h4 id="新しい_WebAPI">新しい WebAPI</h4>

<ul>
 <li>Network Information API: {{ domxref("window.navigator.connection") }} の実験的サポートが追加されました。(接頭辞付き)</li>
 <li>WebTelephony API: {{ domxref("window.navigator.mozTelephony") }} が実装されました。デバイス上での電話の発信、応答、管理をするためのサポートを提供します。</li>
 <li>WebSMS API: モバイルデバイスで SMS テキストメッセージを送信できる {{ domxref("window.navigator.mozSms") }} が利用可能になりました。</li>
</ul>

<h3 id="SVG">SVG</h3>

<ul>
 <li>{{ domxref("SVGTests") }} DOM API に対応しました。({{ bug("607854") }})</li>
 <li>{{ domxref("SVGStringList") }} DOM インタフェースが非標準の <code>length</code> プロパティに対応しました。({{ bug("711958") }})</li>
</ul>

<h3 id="MathML">MathML</h3>

<ul>
 <li>MathML 式の方向性を制御する <code>dir</code> 属性に対応しました。{{ MathMLElement("math") }}{{ MathMLElement("mrow") }}{{ MathMLElement("mstyle") }} の各要素と、<a href="/Special:Tags?tag=MathML:Token+Elements" title="Special:Tags?tag=MathML:Token+Elements">MathML トークン要素</a> で使用できます。これは特に一部の <a class="external" href="http://www.w3.org/TR/arabic-math/">アラビア語数学的表記</a> で必要とされるものです。</li>
 <li>MathML3 で定義された配置属性 <code>align</code> に対応しました。{{ MathMLElement("munder") }}{{ MathMLElement("mover") }}{{ MathMLElement("munderover") }} の各要素で使用できます。</li>
</ul>

<h3 id="ネットワーク">ネットワーク</h3>

<ul>
 <li>以前は、WebSocket チャンネルが、予期せぬエラーのためにクローズしたとき、あるいは、仕様がカバーしていないエラー状況のためにクローズした場合、Gecko は <code>CLOSE_NORMAL</code> クローズコードを報告していましたが、代わりに <code>CLOSE_GOING_AWAY コードを報告するようになりました。</code></li>
</ul>

<h3 id="開発者ツール">開発者ツール</h3>

<ul>
 <li><a href="/ja/docs/Tools/Web_Console" title="Tools/Web_Console">Web Console</a> がコンソールが開いていない状態の場合にエラーメッセージと {{ domxref("console.log()") }} を用いて追加したログエントリをキャッシュし、コンソールが開いたときにそれらを表示するようになりました。</li>
 <li><a href="/ja/docs/Tools/Page_Inspector/3D_view" title="Tools/Page_Inspector/3D_view">3D view</a> で "r" キーを押すことにより、ズームレベル、移動、回転をリセットできるようになりました。</li>
 <li><a href="/ja/docs/Tools/Page_Inspector/3D_view" title="Tools/Page_Inspector/3D_view">3D view</a> でノードを選択した後に "x" キーを押すことにより、そのノードを隠すことができるようになりました。</li>
 <li><a href="/ja/docs/Tools/Using_the_Source_Editor" title="Tools/Using_the_Source_Editor">ソースエディタ</a> にいくつかの新しい編集機能とキーボードショートカットが追加されました。詳細は、<a href="/ja/docs/Tools/Using_the_Source_Editor" title="Tools/Using_the_Source_Editor">ソースエディタの利用</a> を参照してください。</li>
</ul>

<p>Mozilla は人気のアドオン <a class="external" href="http://getfirebug.com/" title="Firebug Firefox add-on">Firebug</a> に依存するだけではなく、自身の Web 開発者ツールの統合作業を進めています。これらのツールについてのさらなる情報および Firefox での Web 開発を支援する外部リソースの一覧は、<a href="/ja/docs/Tools" title="Tools">Web developer tools</a> にあります。</p>

<h3 id="その他の変更点">その他の変更点</h3>

<ul>
 <li>GEOSTD8 文字セットは、これまでも完全にはサポートされていませんでしたが、まったくサポートされなくなりました。</li>
</ul>

<h2 id="Mozilla_開発者とアドオン開発者向けの変更点">Mozilla 開発者とアドオン開発者向けの変更点</h2>

<h3 id="JavaScript_code_modules">JavaScript code modules</h3>

<h4 id="source-editor.jsm">source-editor.jsm</h4>

<ul>
 <li>The <a href="/ja/docs/JavaScript_code_modules/source-editor.jsm#resetUndo%28%29" title="JavaScript_code_modules/source-editor.jsm#resetUndo%28%29"><code>resetUndo()</code></a> method was added; this lets you clear the undo stack.</li>
 <li>The source editor now offers methods for providing search capability: <a href="/ja/docs/JavaScript_code_modules/source-editor.jsm#find()" title="JavaScript_code_modules/source-editor.jsm#find()"><code>find()</code></a>, <a href="/ja/docs/JavaScript_code_modules/source-editor.jsm#findNext()" title="JavaScript_code_modules/source-editor.jsm#findNext()"><code>findNext()</code></a>, and <a href="/ja/docs/JavaScript_code_modules/source-editor.jsm#findPrevious()" title="JavaScript_code_modules/source-editor.jsm#findPrevious()"><code>findPrevious()</code></a>.</li>
</ul>

<h3 id="XUL">XUL</h3>

<ul>
 <li>{{ XULAttr("chromemargin") }} 属性の値の定義が若干変更されました。これにより、デフォルトのウィンドウ枠幅が異なる各プラットフォームで、クロスプラットフォームな XUL コードの見た目を簡単に揃えられるようになりました。</li>
</ul>

<h3 id="XPCOM">XPCOM</h3>

<ul>
 <li><a href="/ja/docs/nsISupports_proxies" title="nsISupports_proxies"><code>nsISupports</code> プロキシ</a> が削除されました。代わりに <a href="/ja/docs/XPCOM/Making_cross-thread_calls_using_runnables" title="XPCOM/Making_cross-thread_calls_using_runnables">runnable を使ってください</a></li>
</ul>

<ul>
 <li>Firefox 11 changed the behavior of <a href="/ja/docs/Components.utils.getWeakReference" title="Components.utils.getWeakReference"><code>Components.utils.getWeakReference()</code></a> to throw an exception when the object reference is null; the previous behavior of silently failing has been restored.</li>
</ul>

<h3 id="XPConnect">XPConnect</h3>

<ul>
 <li>The <a href="/ja/docs/PRUint64" title="PRUint64"><code>PRUint64</code></a> data type was incorrectly essentially identical to <a href="/ja/docs/PRInt64" title="PRInt64"><code>PRint64</code></a> when used with XPConnect. This has been fixed.</li>
</ul>

<h3 id="インタフェースの変更">インタフェースの変更</h3>

<ul>
 <li><code>nsIScreen_MOZILLA_2_0_BRANCH</code> インタフェースが {{ interface("nsIScreen") }} へ統合されました。このインタフェースで定義されていた API (画面の最低輝度の調節) はこれまで文書化されていませんでしたが、これを機に文書化されました。</li>
 <li>The {{ interface("nsIScriptError2") }} interface has been merged into {{ interface("nsIScriptError") }}.</li>
 <li>{{ ifmethod("nsIDownloadManager", "addDownload") }} is now handled asynchronously rather than synchronously.</li>
 <li>The {{ ifmethod("imgIContainerObserver", "frameChanged") }} method now receives as its first parameter an {{ interface("imgIRequest") }} object identifying the corresponding request.</li>
 <li>The {{ ifmethod("nsIDOMWindowUtils", "sendTouchEvent") }} method has been added to allow synthesizing touch events.</li>
 <li>You can now scroll the specified content to the vertical center of the view by specifying <code>SCROLL_CENTER_VERTICALLY</code> as the scroll constant when calling {{ ifmethod("nsISelectionController", "scrollSelectionIntoView") }}.</li>
 <li>The new {{ ifattribute("nsIMemoryMultiReporter", "explicitNonHeap") }} attribute has been added; this is a more efficient way to obtain the sum of all of the multi-reporter's measurements that have a path that starts with "explicit" <strong>and</strong> are of the kind <code>KIND_NONHEAP</code>.</li>
 <li>The {{ ifattribute("nsIDOMWindowUtils", "paintingSuppressed") }} attribute has been added; this boolean value indicates whether or not painting is currently suppressed on the window. This is used on mobile to prevent bouncy rendering that occurs when attempts to draw the page begin before enough content is available to do so smoothly.</li>
 <li>The <code>nsIDocCharset</code> and <code>nsIDocumentCharsetInfo</code> interfaces have been merged into {{ interface("nsIDocShell") }}. As part of this work, the old <code>forcedDetector</code> attribute has been removed; it never did anything.</li>
</ul>

<h3 id="SpiderMonkey">SpiderMonkey</h3>

<ul>
 <li><code>JSThread</code> has been eliminated.</li>
 <li><code>JSThreadData</code> has been merged into <code>JSRuntime</code>.</li>
</ul>

<h3 id="Building">Building</h3>

<ul>
 <li>When building on Windows, you must have the Windows 7 SDK installed.</li>
</ul>

<h3 id="Other_changes">Other changes</h3>

<ul>
 <li>The editor component (known as <a href="/ja/docs/Midas" title="Midas">Midas</a>) now <a href="/ja/docs/Using_the_Editor_from_XUL#Editor_event_handling" title="Using_the_Editor_from_XUL#Editor_event_handling">only accepts events</a> from privileged code.</li>
</ul>

<h2 id="See_also" name="See_also">関連記事</h2>

<ul>
 <li><a class="link-https" href="https://dev.mozilla.jp/2012/03/firefox-12-site-compatibility/">Firefox 12 のサイト互換性に関わる修正のまとめ</a></li>
 <li><a class="link-https" href="https://dev.mozilla.jp/2012/03/firefox-12-addon-compatibility/">Firefox 12 のアドオン互換性に関わる修正のまとめ</a></li>
 <li><a class="external" href="http://hacks.mozilla.org/2012/02/aurora-12-is-out-improvements-and-updated-developer-tools/">Aurora 12 is out – improvements and updated Developer Tools</a></li>
</ul>

<div>{{Firefox_for_developers('11')}}</div>