| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008, The Android Open Source Project | 2 * Copyright 2008, The Android Open Source Project |
| 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 18 matching lines...) Expand all Loading... |
| 29 Conditional=TOUCH_EVENTS | 29 Conditional=TOUCH_EVENTS |
| 30 ] Touch { | 30 ] Touch { |
| 31 readonly attribute long clientX; | 31 readonly attribute long clientX; |
| 32 readonly attribute long clientY; | 32 readonly attribute long clientY; |
| 33 readonly attribute long screenX; | 33 readonly attribute long screenX; |
| 34 readonly attribute long screenY; | 34 readonly attribute long screenY; |
| 35 readonly attribute long pageX; | 35 readonly attribute long pageX; |
| 36 readonly attribute long pageY; | 36 readonly attribute long pageY; |
| 37 readonly attribute EventTarget target; | 37 readonly attribute EventTarget target; |
| 38 readonly attribute unsigned long identifier; | 38 readonly attribute unsigned long identifier; |
| 39 readonly attribute int webkitRadiusX; | 39 readonly attribute long webkitRadiusX; |
| 40 readonly attribute int webkitRadiusY; | 40 readonly attribute long webkitRadiusY; |
| 41 readonly attribute float webkitRotationAngle; | 41 readonly attribute float webkitRotationAngle; |
| 42 readonly attribute float webkitForce; | 42 readonly attribute float webkitForce; |
| 43 }; | 43 }; |
| 44 } | 44 } |
| OLD | NEW |