Fix 24740 - Define code values for the special keys on Mac keyboard
authorGary Kacmarcik <garykac@google.com>
Mon, 07 Apr 2014 13:58:22 -0700
changeset 570 b98fadd48bc8
parent 569 ece8c5d87212
child 571 fc7d6711a24d
Fix 24740 - Define code values for the special keys on Mac keyboard
html/DOM3-Events.html
--- a/html/DOM3-Events.html	Mon Apr 07 11:37:02 2014 -0700
+++ b/html/DOM3-Events.html	Mon Apr 07 13:58:22 2014 -0700
@@ -6939,6 +6939,10 @@
 									<td>0x88</td><td>Japanese: <code class="keycap">カタカナ/ひらがな/ローマ字</code> (<span class="phonetic">katakana/hiragana/romaji</span>)</td></tr>
 								<tr><td><code id="code-NoConvert" class="key-code">'NoConvert'</code></td>
 									<td>0x8b</td><td>Japanese: <code class="keycap">無変換</code> (<span class="phonetic">muhenkan</span>)</td></tr>
+								<tr><td><code id="code-Eisu" class="key-code">'Eisu'</code></td>
+									<td></td><td>Japanese: <code class="keycap">英数</code> (<span class="phonetic">eisu</span>).
+										This code should only be used when the Eisu key is a separate physical key (as on the Mac keyboard).
+									</td></tr>
 							</tbody>
 						</table>
 						<p>On Apple keyboards, some keys on the bottom row are omitted and others are arranged in
@@ -7226,10 +7230,12 @@
 				</section>
 
 				<section id="key-legacy">
-					<h1>Legacy Keys</h1>
-					<p>These keys are not found on modern keyboards.
-					   They are listed here are for reference purposes.
-					</p>
+					<h1>Legacy Keys and Non-Standard Keys</h1>
+
+					<p>These keys are not found on modern standard keyboards.
+					   They are listed here for reference purposes.
+						</p>
+
 					<table id="table-key-code-legacy" class="data-table full-width">
 						<caption>List of code values for legacy keys.</caption>
 						<thead><tr><th>Code Value</th><th>Notes (Informative)</th></tr></thead>
@@ -7250,6 +7256,21 @@
 								<td></td></tr>
 						</tbody>
 					</table>
+
+					<p>The following keys are found on special-purpose international keyboards.
+						</p>
+
+					<table id="table-key-code-international" class="data-table full-width">
+						<caption>List of code values for keys found on special international keyboards.</caption>
+						<thead><tr><th>Code Value</th><th>Notes (Informative)</th></tr></thead>
+						<tbody>
+							<tr><td><code id="code-Hiragana" class="key-code">'Hiragana'</code></td>
+								<td>Use for dedicated <code class="keycap">ひらがな</code> key found on some Japanese word processing keyboards.</td></tr>
+							<tr><td><code id="code-Katakana" class="key-code">'Katakana'</code></td>
+								<td>Use for dedicated <code class="keycap">カタカナ</code> key found on some Japanese word processing keyboards.</td></tr>
+						</tbody>
+					</table>
+
 				</section>
 
 			</section><!-- keyboard-key-codes -->