| Index: core/html/ime/InputMethodContext.idl | 
| diff --git a/core/html/ime/InputMethodContext.idl b/core/html/ime/InputMethodContext.idl | 
| index 2ad97b9529222b3f99ad0c50d2c3014a86eb1e02..1c7017847aaf1c18c061ed76d1b627d633cef313 100644 | 
| --- a/core/html/ime/InputMethodContext.idl | 
| +++ b/core/html/ime/InputMethodContext.idl | 
| @@ -29,12 +29,14 @@ | 
| */ | 
|  | 
| // http://www.w3.org/TR/ime-api/ | 
| -[ | 
| -] interface InputMethodContext { | 
| +interface InputMethodContext : EventTarget { | 
| readonly attribute Composition composition; | 
| readonly attribute DOMString locale; | 
| readonly attribute HTMLElement target; | 
| void confirmComposition(); | 
| void setCaretRectangle(Node anchor, long x, long y, long w, long h); | 
| -    void setExclusionRectangle(Node anchor, long x, long y, long w, long h); | 
| + | 
| +    attribute EventHandler oncandidatewindowshow; | 
| +    attribute EventHandler oncandidatewindowupdate; | 
| +    attribute EventHandler oncandidatewindowhide; | 
| }; | 
|  |