diff options
| author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
|---|---|---|
| committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
| commit | a065e04d529da1d847b5062a12c46d916408bf32 (patch) | |
| tree | fe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/ja/mozilla/gecko | |
| parent | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff) | |
| download | translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2 translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip | |
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/ja/mozilla/gecko')
20 files changed, 0 insertions, 739 deletions
diff --git a/files/ja/mozilla/gecko/chrome/api/chromeworker/index.html b/files/ja/mozilla/gecko/chrome/api/chromeworker/index.html deleted file mode 100644 index db2f4f08de..0000000000 --- a/files/ja/mozilla/gecko/chrome/api/chromeworker/index.html +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: ChromeWorker -slug: Mozilla/Gecko/Chrome/API/ChromeWorker -translation_of: Mozilla/Gecko/Chrome/API/ChromeWorker ---- -<div> -<section class="Quick_links" id="Quick_Links"> -<ol> - <li><strong><a href="/en-US/docs/Web/API/Mozilla"><code>Mozilla</code></a></strong></li> -</ol> -</section> - -<div class="blockIndicator nonStandard nonStandardHeader"> -<p><strong><span class="gt-baf-term-text"><span class="gt-baf-cell gt-baf-word-clickable">非標準</span></span></strong><br> - この機能は標準的ではなく、標準化もされていません。 Web に公開している本番サイトでは使用しないでください。すべてのユーザに対して機能するわけではありません。実装間には大きな非互換性があり、その振る舞いは将来変更されるかもしれません。</p> -</div> -</div> - -<h2 id="要約">要約</h2> - -<p>特権コードを開発していて、ネイティブコードへの呼び出しを実行するために <a href="/en/js-ctypes" title="en/js-ctypes">js-ctypes</a> を使用できる worker を作成したい場合は、標準の <a href="/ja/docs/Web/API/Worker" title="The Worker interface of the Web Workers API represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread."><code>Worker</code></a> オブジェクトの代わりに <code>ChromeWorker</code> を使用してください。worker のグローバルスコープで利用可能なグローバル <code>ctypes</code> オブジェクトを介して <a href="/en/js-ctypes" title="en/js-ctypes">js-ctypes</a> にアクセスできることを除けば、標準の <a href="/ja/docs/Web/API/Worker" title="The Worker interface of the Web Workers API represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread."><code>Worker</code></a> とまったく同じように機能します。ChromeWorker による js-ctypes の使用例は Github で入手でき、<a href="#seealso">下記の関連項目セクション</a>からリンクされています。Promise を特徴とするコールバックバージョンの ChromeWorker で postMessage を使用するには、<a href="/ja/docs/Web/API/PromiseWorker">PromiseWorker</a> を参照してください。</p> - -<p>アドオンは worker をロードするために絶対 URL を使用しなければならず、それらの URL は <code>chrome://</code> または <code>resource://</code> プロトコル (<code>file://</code> は受け入れられません) を使用する必要があります。 <code>file://</code> URL を使用したいアドオンは、まず次のようなコードを使用してリソース置換パスを登録する必要があります。</p> - -<pre class="brush: js">var fileuri = Services.io.newFileURI(file); -Services.io.getProtocolHandler('resource'). - QueryInterface(Ci.nsIResProtocolHandler). - setSubstitution('my-cool-addon', fileuri); - var worker = new Worker('resource://my-cool-addon/worker.js');</pre> - -<p>More references:</p> - -<ul> - <li>You can use <code>ChromeWorker</code> from <a href="/en/JavaScript_code_modules" title="en/JavaScript code modules">JavaScript code modules</a>. See <a href="/en/JavaScript_code_modules/Using_workers_in_JavaScript_code_modules" title="en/JavaScript code modules/Using workers in JavaScript code modules">Using workers in JavaScript code modules</a> for details.</li> - <li>You can use <a href="https://developer.mozilla.org/en-US/docs/Mozilla/ChromeWorkers/Chrome_Worker_Modules">ChromeWorker modules</a> in ChromeWorkers.</li> - <li>See <a class="internal" href="/En/Using_web_workers" title="en/Using DOM workers">Using web workers</a> for examples and details.</li> -</ul> - -<h2 id="あわせて参照">あわせて参照<a id="seealso" name="seealso"></a></h2> - -<ul> - <li><a class="internal" href="/en/Using_web_workers" title="en/Using DOM workers">Using web workers</a></li> - <li><a href="/en/JavaScript_code_modules/Using_workers_in_JavaScript_code_modules" title="en/JavaScript code modules/Using workers in JavaScript code modules">Using workers in JavaScript code modules</a></li> - <li><a href="/en-US/docs/Web/API/Worker" title="The Worker interface of the Web Workers API represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread."><code>Worker</code></a></li> - <li><code><a class="internal" href="/en/DOM/SharedWorker" title="en/DOM/SharedWorker">SharedWorker</a></code></li> - <li><a class="external" href="http://www.whatwg.org/specs/web-workers/current-work/" title="http://www.whatwg.org/specs/web-workers/current-work/">Web Workers specification</a></li> - <li><a href="/en-US/docs/Web/API/WorkerGlobalScope" title="The WorkerGlobalScope interface of the Web Workers API is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop."><code>WorkerGlobalScope</code></a></li> - <li><a href="https://github.com/Noitidart/ChromeWorker">GitHub :: ChromeWorker</a> - A fully working demo addon using js-ctypes from a chrome worker. Uses WinAPI example.</li> - <li><a href="/en-US/docs/Web/API/PromiseWorker">PromiseWorker</a> - <ul> - <li><a href="https://github.com/Noitidart/PromiseWorker">GitHub :: PromiseWorker</a> - Shows how to uses promises as an twist on postMessage feature of ChromeWorker</li> - </ul> - </li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/api/index.html b/files/ja/mozilla/gecko/chrome/api/index.html deleted file mode 100644 index 3885f415f1..0000000000 --- a/files/ja/mozilla/gecko/chrome/api/index.html +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: Chrome-only API reference -slug: Mozilla/Gecko/Chrome/API -tags: - - API - - 'API:Mozilla Extensions' - - Chrome - - Gecko - - Mozilla - - NeedsTranslation - - Non-standard - - Overview - - Reference - - TopicStub -translation_of: Mozilla/Gecko/Chrome/API ---- -<p>{{FirefoxSidebar}}</p> - -<p class="seoSummary">This page lists APIs that only run in Gecko Chrome code (and sometimes in other privileged circumstances).</p> - -<div class="blockIndicator note"> -<p><strong>Note</strong>: Most of the APIs exposed to the Web in general are also usable in Chrome code: see <a href="/en-US/docs/Web/API">Web APIs</a> for a list of these.</p> -</div> - -<p>{{LandingPageListSubpages}}</p> - -<dl> - <dd class="landingPageList"> </dd> -</dl> - -<p> </p> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text(hover)/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text(hover)/index.html deleted file mode 100644 index 0c92782256..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text(hover)/index.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: ':-moz-tree-cell-text(hover)' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell-text(hover)' -tags: - - CSS - - Non-standard - - Reference - - XUL - - 疑似クラス -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell-text(hover)' ---- -<div>{{Non-standard_header}}{{CSSRef}}{{gecko_minversion_header(1.9)}}</div> - -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>:-moz-tree-cell-text(hover)</code></strong> <a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>は、マウスカーソルがツリーセル内のテキストに合わせてあるとき、要素に一致します。</p> - -<p>このセレクターは、主にテーマ開発者によって使用されるものです。</p> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text/index.html deleted file mode 100644 index 030edc7899..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell-text/index.html +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: ':-moz-tree-cell-text' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell-text' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell-text' ---- -<p>{{Non-standard_header}}{{CSSRef}}</p> - -<p><code>properties</code> 属性によってアクティブ化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treecell")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("font")}}</li> - <li>{{cssxref("visibility")}}</li> - <li>{{cssxref("color")}}</li> - <li>{{cssxref("text-decoration")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell/index.html deleted file mode 100644 index e1ab2e64f0..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-cell/index.html +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: ':-moz-tree-cell' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-cell' ---- -<div>{{CSSRef}}{{Non-standard_header}}</div> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treecell")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("background")}}</li> - <li>{{cssxref("border")}}</li> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("outline")}}</li> - <li>{{cssxref("padding")}}</li> - <li>{{cssxref("visibility")}}</li> -</ul> - -<h2 id="参照">参照</h2> - -<ul> - <li><a href="/ja/docs/XUL/Tutorial/Styling_a_Tree">ツリーのスタイル付け</a></li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-column/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-column/index.html deleted file mode 100644 index cec1fd82a2..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-column/index.html +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: ':-moz-tree-column' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-column' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-column' ---- -<div>{{CSSRef}}{{Non-standard_header}}</div> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treecol")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("visibility")}}</li> - <li>{{cssxref("text style")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-drop-feedback/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-drop-feedback/index.html deleted file mode 100644 index 18603774d5..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-drop-feedback/index.html +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: ':-moz-tree-drop-feedback' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-drop-feedback' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-drop-feedback' ---- -<div>{{Non-standard_header}}{{CSSRef}}</div> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treerow")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("visibility")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-image/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-image/index.html deleted file mode 100644 index cf19d79e47..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-image/index.html +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: ':-moz-tree-image' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-image' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/:-moz-tree-image' ---- -<div>{{CSSRef}}{{Non-standard_header}}</div> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treeitem")}}</li> - <li>{{XULElem("treecell")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("list-style")}}</li> - <li>{{cssxref("position")}}</li> -</ul> - -<h2 id="Examples" name="Examples">例</h2> - -<p><a class="external" href="http://forums.mozillazine.org/viewtopic.php?t=610762">Bookmark icons in the Places window - Mozillazine Forum</a></p> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-indentation/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-indentation/index.html deleted file mode 100644 index f0b8edee2f..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-indentation/index.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: ':-moz-tree-indentation' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-indentation' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-indentation' ---- -<p>{{CSSRef}}{{Non-standard_header}}</p> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treeitem")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("position")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-line/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-line/index.html deleted file mode 100644 index 058ae755d4..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-line/index.html +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: ':-moz-tree-line' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-line' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-line' ---- -<p>{{Non-standard_header}}{{CSSRef}}</p> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treeitem")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("border")}}</li> - <li>{{cssxref("visibility")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-progressmeter/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-progressmeter/index.html deleted file mode 100644 index a037c191bd..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-progressmeter/index.html +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: ':-moz-tree-progressmeter' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-progressmeter' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-progressmeter' ---- -<div>{{Non-standard_header}}{{CSSRef}}</div> - -<p><code>type</code> 属性に <code>progressmeter</code> が設定されることによって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treecell")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("color")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row(hover)/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row(hover)/index.html deleted file mode 100644 index cda60c7101..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row(hover)/index.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: ':-moz-tree-row(hover)' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row(hover)' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row(hover)' ---- -<p>{{Non-standard_header}}{{ CSSRef() }}{{ Fx_minversion_header(3) }}</p> - -<h2 id="Summary" name="Summary">概要</h2> - -<p>マウスカーソルが tree 行の上に合わせてあるとき、<code>:-moz-tree-row(hover)</code> は要素にマッチします。</p> - -<p>このセレクタは主にテーマ開発者によって使用されるものです。</p> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row/index.html deleted file mode 100644 index ff4d962ceb..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-row/index.html +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: ':-moz-tree-row' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row' ---- -<p>{{CSSRef}}{{Non-standard_header}}</p> - -<p><code>-moz-tree-row</code> CSS <a href="/ja/docs/Web/CSS/Pseudo-elements">擬似要素</a>は、列の選択と tree 列のスタイル付けに使用されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treerow")}}</li> -</ul> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="syntaxbox">treechildren::-moz-tree-row { <em>style プロパティ</em> } -</pre> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("background")}}</li> - <li>{{cssxref("border")}}</li> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("outline")}}</li> - <li>{{cssxref("padding")}}</li> - <li>{{cssxref("display")}}</li> - <li>{{cssxref("-moz-appearance")}}</li> -</ul> - -<h2 id="Examples" name="Examples">例</h2> - -<pre class="brush:css">treechildren::-moz-tree-row( foo bar ) -{ - margin: 2%; -} -</pre> - -<p>...次の位置に適用されます...</p> - -<pre class="brush:html"> <treerow properties="foo">...</treerow> -</pre> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-separator/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-separator/index.html deleted file mode 100644 index 3c3d83f284..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-separator/index.html +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: ':-moz-tree-separator' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-separator' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-separator' ---- -<div>{{Non-standard_header}}{{CSSRef}}</div> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treeseparator")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("border")}}</li> - <li>{{cssxref("display")}}</li> - <li>{{cssxref("-moz-appearance")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-twisty/index.html b/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-twisty/index.html deleted file mode 100644 index 50cb0808df..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/_doublecolon_-moz-tree-twisty/index.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: ':-moz-tree-twisty' -slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-twisty' -tags: - - CSS - - CSS Reference - - Non-standard -translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-twisty' ---- -<p>{{ CSSRef() }}{{Non-standard_header}}</p> - -<p><code>properties</code> 属性によって活性化されます。</p> - -<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2> - -<ul> - <li>{{XULElem("treecell")}}</li> -</ul> - -<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</h2> - -<ul> - <li>{{cssxref("border")}}</li> - <li>{{cssxref("margin")}}</li> - <li>{{cssxref("padding")}}</li> - <li>{{cssxref("display")}}</li> - <li>{{cssxref("list-style")}}</li> - <li>{{cssxref("position")}}</li> - <li>{{cssxref("-moz-appearance")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/display-xul/index.html b/files/ja/mozilla/gecko/chrome/css/display-xul/index.html deleted file mode 100644 index 4d48fdef55..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/display-xul/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: <display-xul> -slug: Mozilla/Gecko/Chrome/CSS/display-xul -tags: - - CSS - - CSS データ型 - - CSS 表示 - - Deprecated - - Firefox - - Gecko - - Mozilla - - Mozilla 拡張 - - Non-standard - - Reference - - XUL -translation_of: Mozilla/Gecko/Chrome/CSS/display-xul ---- -<div>{{CSSRef}}{{Non-standard_Header}}{{Deprecated_Header(62)}}</div> - -<p class="summary">Firefox は以下の <code>-moz-</code> の接頭辞が付いた <a href="/ja/docs/Mozilla/Tech/XUL">XUL</a> 表示値に対応しています。</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<dl> - <dt><code>-moz-box</code> {{Non-standard_Inline}} {{Deprecated_Inline}}</dt> - <dd>XUL ボックス、 <code style="white-space: nowrap;">flex</code> とほぼ等価</dd> - <dt><code>-moz-inline-box</code> {{Non-standard_Inline}} {{Deprecated_Inline}}</dt> - <dd>XUL インラインボックス、 <code style="white-space: nowrap;">inline-flex</code> とほぼ等価</dd> - <dt><code>-moz-grid</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL グリッド</dd> - <dt><code>-moz-inline-grid</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL インライングリッド</dd> - <dt><code>-moz-grid-group</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL グリッドグループ</dd> - <dt><code>-moz-grid-line</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL グリッド線</dd> - <dt><code>-moz-stack</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL スタック</dd> - <dt><code>-moz-inline-stack</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL インラインスタック</dd> - <dt><code>-moz-deck</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL デッキ</dd> - <dt><code>-moz-popup</code> {{Non-standard_Inline}}{{Obsolete_Inline(62)}}</dt> - <dd>XUL ポップアップ</dd> -</dl> - -<p>XUL 表示値はすべて、 <code style="white-space: nowrap;">-moz-box</code> および <code style="white-space: nowrap;">-moz-inline-box</code> を除き、 {{bug(1288572)}} で削除されました。詳しくは <a class="external" href="https://www.fxsitecompat.com/en-CA/docs/2018/most-of-non-standard-css-display-values-have-been-dropped/">this Firefox Site Compatibility post</a> をご覧ください。</p> - -<p> <code style="white-space: nowrap;">-moz-box</code> および <code style="white-space: nowrap;">-moz-inline-box</code> の値は、後に {{bug(879275)}} で削除される予定です。詳細は <a class="external" href="https://www.fxsitecompat.com/en-CA/docs/2018/display-moz-box-and-display-moz-inline-box-have-been-deprecated/">this Firefox Site Compatibility post</a> をご覧ください。</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{CSSxRef("display")}}</li> - <li>{{CSSxRef("<display-inside>")}}</li> - <li>{{CSSxRef("<display-outside>")}}</li> - <li>{{CSSxRef("<display-listitem>")}}</li> - <li>{{CSSxRef("<display-internal>")}}</li> - <li>{{CSSxRef("<display-box>")}}</li> - <li>{{CSSxRef("<display-legacy>")}}</li> -</ul> diff --git a/files/ja/mozilla/gecko/chrome/css/index.html b/files/ja/mozilla/gecko/chrome/css/index.html deleted file mode 100644 index 45808aee2a..0000000000 --- a/files/ja/mozilla/gecko/chrome/css/index.html +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: CSS -slug: Mozilla/Gecko/Chrome/CSS -tags: - - CSS - - Chrome - - Gecko - - Mozilla - - NeedsTranslation - - TopicStub -translation_of: Mozilla/Gecko/Chrome/CSS ---- -<div>{{FirefoxSidebar}}</div> - -<p class="summary">This page lists CSS properties that are only available in Gecko Chrome code (and sometimes in other privileged circumstances, eg. UA stylesheets.)</p> - -<div class="note"> -<p><strong>Note</strong>: Most of the CSS properties exposed to the Web in general are also usable in Chrome stylesheets: see the <a href="/en-US/docs/Web/CSS">CSS documentation</a> for a list of these.</p> -</div> - -<p>{{SubpagesWithSummaries}}</p> diff --git a/files/ja/mozilla/gecko/chrome/index.html b/files/ja/mozilla/gecko/chrome/index.html deleted file mode 100644 index af4f7182cf..0000000000 --- a/files/ja/mozilla/gecko/chrome/index.html +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Gecko Chrome -slug: Mozilla/Gecko/Chrome -tags: - - Chrome - - Gecko - - Mozilla - - NeedsTranslation - - Overview - - TopicStub -translation_of: Mozilla/Gecko/Chrome ---- -<div>{{FirefoxSidebar}}{{Draft}}</div> - -<p class="summary">This page contains information specific to Chrome code running in Gecko.</p> - -<p>{{SubpagesWithSummaries}}</p> diff --git a/files/ja/mozilla/gecko/index.html b/files/ja/mozilla/gecko/index.html deleted file mode 100644 index 496a56a822..0000000000 --- a/files/ja/mozilla/gecko/index.html +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: Gecko -slug: Mozilla/Gecko -tags: - - Gecko -translation_of: Mozilla/Gecko ---- -<p><img align="right" src="/@api/deki/files/777/=Netscape-gecko-logo.jpg"><strong>Gecko</strong> は、Mozilla プロジェクトによって開発されているレイアウトエンジンの名称です。元々 NGLayout という名前でした。</p> -<p>Gecko の機能は、<a href="/ja/docs/HTML" title="HTML">HTML</a> 、<a href="/ja/docs/CSS" title="CSS">CSS</a> 、<a href="/ja/docs/XUL" title="XUL">XUL</a> 、そして<a href="/ja/docs/JavaScript" title="JavaScript">JavaScript</a>、Web 上のコンテンツを読み込み、ユーザの画面上に描画もしくは印刷することです。XUL ベースのアプリケーションでは、Gecko はアプリケーションのユーザインターフェースの描画にも利用されています。</p> -<p>Gecko は、Firefox、Mozilla Suite、Camino などのいくつかのブラウザを含む、様々なアプリケーションで利用されています。(完全なリストは、<a class="external" href="http://en.wikipedia.org/wiki/Gecko_(layout_engine)#Web_browsers">Wikipedia の Gecko についての記事 (英語版)</a>を参照してください。) 同じバージョンの Gecko を利用している製品はまったく同じ標準をサポートしています。</p> -<p><small>Gecko の名称とロゴは Netscape Communications Corporation の商標です。許可を得て使用しています。</small></p> - -<table class="topicpage-table"> - <tbody> - <tr> - <td> - <h2 class="Documentation" id="Documentation" name="Documentation">ドキュメンテーション</h2> - <dl> - <dt> - <a href="/ja/docs/Gecko_FAQ" title="Gecko_FAQ">Gecko FAQ</a></dt> - <dd> - <small>Gecko についてのよくある質問と答。</small></dd> - <dt> - <a href="/ja/docs/Gecko_DOM_Reference" title="Gecko_DOM_Reference">Gecko DOM リファレンス</a></dt> - <dd> - DOM に関する説明。</dd> - <dt> - <a href="/ja/docs/Gecko-Specific_DOM_Events" title="Gecko/Gecko event reference">Gecko イベントリファレンス</a></dt> - <dd> - Gecko 及び Mozilla のアプリケーションで用いられるイベントの解説。<br> - <small>※Web 標準の DOM イベントに関しては <a href="/ja/docs/DOM/DOM_event_reference" title="DOM/DOM event reference">『DOM イベントリファレンス』</a> を参照して下さい。</small></dd> - <dt> - <a href="/ja/docs/Gecko/Versions" title="Gecko/Versions">Gecko versions and application versions</a></dt> - <dd> - Versions of Gecko and the applications they're used in.</dd> - <dt> - <a class="external" href="http://www.mozilla.org/newlayout/doc/layout-2006-12-14/master.xhtml">Mozilla のレイアウトエンジン</a></dt> - <dd> - <small>レイアウトに関するテクニカルトーク。</small></dd> - <dt> - <a href="/ja/docs/Embedding_Mozilla" title="Embedding_Mozilla">Mozilla の組み込み方</a></dt> - <dd> - <small>あなたのアプリケーションで Gecko を使う方法について。</small></dd> - <dt> - <a href="/ja/docs/Character_Sets_Supported_by_Gecko" title="Character Sets Supported by Gecko">Gecko によってサポートされている Character set の一覧</a></dt> - <dd> - A list of the character sets supported by Gecko.</dd> - <dt> - <a href="/en-US/docs/Gecko/HTML_parser_threading" title="en-US/docs/Gecko/HTML_parser_threading">HTML パーサーのスレッド処理</a></dt> - <dd> - HTML パーサ内でのマルチスレッド処理に関する解説。</dd> - <dt> - {{interwiki('wikimo', 'Gecko:Home_Page', 'Gecko Home Page on MozillaWiki')}}</dt> - <dd> - <small>アクティブな開発者のためのホームページ。ロードマップおよび、最新のリソースがあります。</small></dd> - </dl> - <p><span class="alllinks"><a href="/ja/docs/tag/Gecko" title="/ja/docs/tag/Gecko">すべて表示...</a></span></p> - </td> - <td> - <h2 class="Community" id="Community" name="Community">コミュニティ</h2> - <ul> - <li>Mozilla フォーラムを見る... {{ DiscussionList("dev-tech-layout", "mozilla.dev.tech.layout") }}</li> - </ul> - <h2 class="Related_Topics" id="Related_Topics" name="Related_Topics">関連トピック</h2> - <ul> - <li><a href="/ja/docs/Web_Standards" title="Web_Standards">Web 標準</a>, <a href="/ja/docs/XUL" title="XUL">XUL</a>, <a href="/ja/docs/Embedding_Mozilla" title="Embedding_Mozilla">Mozilla の組み込み方</a>, <a href="/ja/docs/Developer_Guide" title="Developing_Mozilla">Mozilla の開発</a></li> - </ul> - </td> - </tr> - </tbody> -</table> diff --git a/files/ja/mozilla/gecko/versions/index.html b/files/ja/mozilla/gecko/versions/index.html deleted file mode 100644 index 598fd24443..0000000000 --- a/files/ja/mozilla/gecko/versions/index.html +++ /dev/null @@ -1,130 +0,0 @@ ---- -title: Gecko 及び対応するアプリケーションのバージョンナンバー -slug: Mozilla/Gecko/Versions -tags: - - Gecko -translation_of: Mozilla/Gecko/Versions ---- -<p>以下の表は、Gecko のバージョンと、そのバージョンが使用されているアプリケーションの対応を示すものです。Gecko 5 以降、Firefox と Thunderbird のバージョンナンバーは Gecko のそれと同じものになっています。</p> -<table class="standard-table"> - <thead> - <tr> - <th>Gecko のバージョン</th> - <th>対応するアプリケーションのバージョン</th> - </tr> - </thead> - <tbody> - <tr> - <td>Gecko 24</td> - <td><a href="/ja/docs/Mozilla/Firefox/Releases/24">Firefox 24</a>、<a href="/ja/docs/Mozilla/Thunderbird/Releases/24">Thunderbird 24</a>、<a href="http://www.seamonkey-project.org/releases/seamonkey2.21/changes">SeaMonkey 2.21</a></td> - </tr> - <tr> - <td>Gecko 23</td> - <td><a href="/ja/docs/Mozilla/Firefox/Releases/23">Firefox 23</a>、<a href="http://www.seamonkey-project.org/releases/seamonkey2.20/changes">SeaMonkey 2.20</a></td> - </tr> - <tr> - <td>Gecko 22</td> - <td><a href="/ja/docs/Mozilla/Firefox/Releases/22">Firefox 22</a>、<a href="http://www.seamonkey-project.org/releases/seamonkey2.19/changes">SeaMonkey 2.19</a></td> - </tr> - <tr> - <td>Gecko 21</td> - <td><a href="/ja/docs/Firefox_21_for_developers">Firefox 21</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.18', 'SeaMonkey 2.18') }}</td> - </tr> - <tr> - <td>Gecko 20</td> - <td><a href="/ja/docs/Firefox_20_for_developers">Firefox 20</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.17', 'SeaMonkey 2.17') }}</td> - </tr> - <tr> - <td>Gecko 19</td> - <td><a href="/ja/docs/Firefox_19_for_developers">Firefox 19</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.16', 'SeaMonkey 2.16') }}</td> - </tr> - <tr> - <td>Gecko 18</td> - <td><a href="/ja/docs/Firefox_18_for_developers" title="/ja/docs/Firefox_18_for_developers">Firefox 18</a>、<a href="/ja/docs/Mozilla/Firefox_OS" title="/ja/docs/Mozilla/Firefox_OS">Firefox OS 1.0</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.15', 'SeaMonkey 2.15') }}</td> - </tr> - <tr> - <td>Gecko 17</td> - <td><a href="/ja/docs/Firefox_17_for_developers" title="/ja/docs/Firefox_17_for_developers">Firefox 17</a>、<a href="https://wiki.mozilla.org/Thunderbird/Support/TB17UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB17UserChanges">Thunderbird 17</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.14', 'SeaMonkey 2.14') }}</td> - </tr> - <tr> - <td>Gecko 16</td> - <td><a href="/ja/docs/Firefox_16_for_developers" title="/ja/docs/Firefox_16_for_developers">Firefox 16</a>、<a href="https://wiki.mozilla.org/Thunderbird/Support/TB16UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB16UserChanges">Thunderbird 16</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.13', 'SeaMonkey 2.13') }}</td> - </tr> - <tr> - <td>Gecko 15</td> - <td><a href="/ja/docs/Firefox_15_for_developers" title="Firefox_15_for_developers">Firefox 15</a>、 <a href="https://wiki.mozilla.org/Thunderbird/Support/TB15UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB15UserChanges">Thunderbird 15</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.12', 'SeaMonkey 2.12') }}</td> - </tr> - <tr> - <td>Gecko 14</td> - <td><a href="/ja/docs/Firefox_14_for_developers" title="Firefox_14_for_developers">Firefox 14</a>、<a href="https://wiki.mozilla.org/Thunderbird/Support/TB14UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB14UserChanges">Thunderbird 14</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.11', 'SeaMonkey 2.11') }}</td> - </tr> - <tr> - <td>Gecko 13</td> - <td><a href="/ja/docs/Firefox_13_for_developers" title="ja/docs/Firefox_13_for_developers">Firefox 13</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB13UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB13UserChanges">Thunderbird 13</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.10', 'SeaMonkey 2.10') }}</td> - </tr> - <tr> - <td>Gecko 12</td> - <td><a href="/ja/docs/Firefox_12_for_developers" title="ja/docs/Firefox_12_for_developers">Firefox 12</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB12UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB12UserChanges">Thunderbird 12</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.9', 'SeaMonkey 2.9') }}</td> - </tr> - <tr> - <td>Gecko 11</td> - <td><a href="/ja/docs/Firefox_11_for_developers" title="ja/docs/Firefox_11_for_developers">Firefox 11</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB11UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB11UserChanges">Thunderbird 11</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.8', 'SeaMonkey 2.8') }}</td> - </tr> - <tr> - <td>Gecko 10</td> - <td><a class="internal" href="/ja/docs/Firefox_10_for_developers" title="ja/docs/Firefox 10 for developers">Firefox 10</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB10UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB10UserChanges">Thunderbird 10</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.7', 'SeaMonkey 2.7') }}</td> - </tr> - <tr> - <td>Gecko 9</td> - <td><a class="internal" href="/ja/docs/Firefox_9_for_developers" title="ja/docs/Firefox 9 for developers">Firefox 9</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB9UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB9UserChanges">Thunderbird 9</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.6', 'SeaMonkey 2.6') }}</td> - </tr> - <tr> - <td>Gecko 8</td> - <td><a class="internal" href="/ja/docs/Firefox_8_for_developers" title="ja/docs/Firefox 8 for developers">Firefox 8</a>、<a class="link-https" href="https://wiki.mozilla.org/Thunderbird/Support/TB8UserChanges" title="https://wiki.mozilla.org/Thunderbird/Support/TB8UserChanges">Thunderbird 8</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.5', 'SeaMonkey 2.5') }}</td> - </tr> - <tr> - <td>Gecko 7</td> - <td><a class="internal" href="/ja/docs/Firefox_7_for_developers" title="ja/docs/Firefox 7 for developers">Firefox 7</a>、<a href="/ja/docs/Thunderbird_7_for_developers" title="ja/docs/Thunderbird 7 for developers">Thunderbird 7</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.4', 'SeaMonkey 2.4') }}</td> - </tr> - <tr> - <td>Gecko 6</td> - <td><a class="internal" href="/ja/docs/Firefox_6_for_developers" title="ja/docs/Firefox 6 for developers">Firefox 6</a>、<a href="/ja/docs/Thunderbird_6_for_developers" title="ja/docs/Thunderbird 6 for developers">Thunderbird 6</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.3', 'SeaMonkey 2.3') }}</td> - </tr> - <tr> - <td>Gecko 5</td> - <td><a href="/ja/docs/Firefox_5_for_developers" title="ja/docs/Firefox 5 for developers">Firefox 5</a>、<a href="/ja/docs/Thunderbird_5_for_developers" title="ja/docs/Thunderbird 5 for developers">Thunderbird 5</a>、{{ interwiki('wikimo', 'SeaMonkey/Features/2.2', 'SeaMonkey 2.2') }}</td> - </tr> - <tr> - <td>Gecko 2</td> - <td><a class="internal" href="/ja/docs/Firefox_4_for_developers" title="ja/docs/Firefox 4 for developers">Firefox 4</a>、<span class="st">Thunderbird 3.3、 </span>{{ interwiki('wikimo', 'SeaMonkey/Features/2.1', 'SeaMonkey 2.1') }}</td> - </tr> - <tr> - <td>Gecko 1.9.2</td> - <td><a class="internal" href="/ja/docs/Firefox_3.6_for_developers" title="ja/docs/Firefox 3.6 for developers">Firefox 3.6</a>、Thunderbird 3.1</td> - </tr> - <tr> - <td>Gecko 1.9.1</td> - <td><a class="internal" href="/ja/docs/Firefox_3.5_for_developers" title="ja/docs/Firefox 3.5 for developers">Firefox 3.5</a>、<a class="internal" href="/ja/docs/Thunderbird_3_for_developers" title="ja/docs/Thunderbird 3 for developers">Thunderbird 3</a>、{{ interwiki('wikimo', 'SeaMonkey:New_for_2.0', 'SeaMonkey 2.0') }}</td> - </tr> - <tr> - <td>Gecko 1.9</td> - <td><a href="/ja/docs/Firefox_3_for_developers" title="ja/docs/Firefox_3_for_developers">Firefox 3</a></td> - </tr> - <tr> - <td>Gecko 1.8.1</td> - <td><a href="/ja/docs/Firefox_2_for_developers" title="ja/docs/Firefox_2_for_developers">Firefox 2</a>、Thunderbird 2、SeaMonkey 1.1</td> - </tr> - <tr> - <td>Gecko 1.8</td> - <td><a href="/ja/docs/Firefox_1.5_for_developers" title="ja/docs/Firefox_1.5_for_developers">Firefox 1.5</a>、Thunderbird 1.5、SeaMonkey 1.0</td> - </tr> - <tr> - <td>Gecko 1.7</td> - <td>Firefox 1.0、Thunderbird 1.0、Nvu 1.0、Mozilla Suite 1.7</td> - </tr> - <tr> - <td colspan="2"><strong>これより古いバージョンの Gecko のバージョンナンバーは Mozilla Suite のそれと一致します。</strong></td> - </tr> - </tbody> -</table> -<p> </p> |
