- From: <bugzilla@jessica.w3.org>
- Date: Wed, 12 Sep 2012 04:50:44 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=18851
Summary: necessary compositionupdate event isn't written in the
examples in 6.2.3
Product: WebAppsWG
Version: unspecified
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: DOM3 Events
AssignedTo: schepers@w3.org
ReportedBy: masayuki@d-toybox.com
QAContact: public-webapps-bugzilla@w3.org
CC: mike@w3.org, www-dom@w3.org
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.
--
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Wednesday, 12 September 2012 04:50:46 UTC