This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 18851 - necessary compositionupdate event isn't written in the examples in 6.2.3
Summary: necessary compositionupdate event isn't written in the examples in 6.2.3
Status: RESOLVED FIXED
Alias: None
Product: WebAppsWG
Classification: Unclassified
Component: HISTORICAL - DOM3 Events (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: Gary Kacmarcik
QA Contact: public-webapps-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-12 04:50 UTC by Masayuki Nakano
Modified: 2013-08-16 20:41 UTC (History)
3 users (show)

See Also:


Attachments

Description Masayuki Nakano 2012-09-12 04:50:44 UTC
http://www.w3.org/TR/2012/WD-DOM-Level-3-Events-20120906/#keys-DeadKeys

1. keydown: '\u0302' (Combining Circumflex Accent key)
2. compositionstart: ''
3. compositionupdate: '\u0302' (Combining Circumflex Accent key)
4. keyup: '\u0302' (Combining Circumflex Accent key)
5. keydown: 'ê' ('\u00EA', LATIN SMALL LETTER E WITH CIRCUMFLEX)
6. compositionend: 'ê'
7. keyup: 'e' ('\u0065', Latin Small Letter E key)

between 5 and 6, compositionupdate: 'ê' is needed.

And also,

1. keydown: '\u0302' (Combining Circumflex Accent key)
2. compositionstart: ''
3. compositionupdate: '\u0302' (Combining Circumflex Accent key)
4. keyup: '\u0302' (Combining Circumflex Accent key)
5. keydown: 'q' ('\u0071', The Latin Small Letter Q key)
6. compositionend: ''
7. keyup: 'q' ('\u0071', The Latin Small Letter Q key)

between 5 and 6, compositionudpate: '' is needed.
Comment 1 Gary Kacmarcik 2013-08-16 20:41:15 UTC
The missing events have been added in the latest ED.