| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 attribute EventListener onspeechstart; | 44 attribute EventListener onspeechstart; |
| 45 attribute EventListener onspeechend; | 45 attribute EventListener onspeechend; |
| 46 attribute EventListener onsoundend; | 46 attribute EventListener onsoundend; |
| 47 attribute EventListener onaudioend; | 47 attribute EventListener onaudioend; |
| 48 attribute EventListener onresult; | 48 attribute EventListener onresult; |
| 49 attribute EventListener onnomatch; | 49 attribute EventListener onnomatch; |
| 50 attribute EventListener onresultdeleted; | 50 attribute EventListener onresultdeleted; |
| 51 attribute EventListener onerror; | 51 attribute EventListener onerror; |
| 52 attribute EventListener onstart; | 52 attribute EventListener onstart; |
| 53 attribute EventListener onend; | 53 attribute EventListener onend; |
| 54 |
| 55 // EventTarget interface |
| 56 void addEventListener(in DOMString type, |
| 57 in EventListener listener, |
| 58 in [Optional] boolean useCapture); |
| 59 void removeEventListener(in DOMString type, |
| 60 in EventListener listener, |
| 61 in [Optional] boolean useCapture); |
| 62 boolean dispatchEvent(in Event evt) |
| 63 raises(EventException); |
| 54 }; | 64 }; |
| 55 } | 65 } |
| OLD | NEW |