| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 in EventListener listener, | 77 in EventListener listener, |
| 78 in [Optional] boolean useCapture); | 78 in [Optional] boolean useCapture); |
| 79 void removeEventListener(in DOMString type, | 79 void removeEventListener(in DOMString type, |
| 80 in EventListener listener, | 80 in EventListener listener, |
| 81 in [Optional] boolean useCapture); | 81 in [Optional] boolean useCapture); |
| 82 boolean dispatchEvent(in Event evt) | 82 boolean dispatchEvent(in Event evt) |
| 83 raises(EventException); | 83 raises(EventException); |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 } | 86 } |
| OLD | NEW |