| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 const unsigned short KEYDOWN = 256; | 80 const unsigned short KEYDOWN = 256; |
| 81 const unsigned short KEYUP = 512; | 81 const unsigned short KEYUP = 512; |
| 82 const unsigned short KEYPRESS = 1024; | 82 const unsigned short KEYPRESS = 1024; |
| 83 const unsigned short DRAGDROP = 2048; | 83 const unsigned short DRAGDROP = 2048; |
| 84 const unsigned short FOCUS = 4096; | 84 const unsigned short FOCUS = 4096; |
| 85 const unsigned short BLUR = 8192; | 85 const unsigned short BLUR = 8192; |
| 86 const unsigned short SELECT = 16384; | 86 const unsigned short SELECT = 16384; |
| 87 const unsigned short CHANGE = 32768; | 87 const unsigned short CHANGE = 32768; |
| 88 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; | 88 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; |
| 89 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy
ReturnValue] attribute boolean returnValue; | 89 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy
ReturnValue] attribute boolean returnValue; |
| 90 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; | 90 [MeasureAs=EventCancelBubble, CallWith=ExecutionContext] attribute boolean c
ancelBubble; |
| 91 }; | 91 }; |
| OLD | NEW |