Backed out changeset 7272b7396c78 (bug 1932758) for causing fenix debug failures...
[gecko.git] / dom / canvas / test / webgl-conf / checkout / deqp / temp_externs / w3c_event3.js
blobe98716e2fa2b8eaaff9a757044f26ba827f0be96
1 /*
2  * Copyright 2010 The Closure Compiler Authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
17 /**
18  * @fileoverview Definitions for W3C's event Level 3 specification.
19  *  This file depends on w3c_event.js.
20  *  The whole file has been partially type annotated.
21  *  Created from
22  *   http://www.w3.org/TR/DOM-Level-3-Events/#ecma-script-binding-ecma-binding
23  *
24  * @externs
25  */
27 /**
28  * @param {string} typeArg
29  * @param {boolean} canBubbleArg
30  * @param {boolean} cancelableArg
31  * @param {Window} viewArg
32  * @param {string} keyIdentifierArg
33  * @param {number} keyLocationArg
34  * @param {string} modifiersList
35  */
36 KeyboardEvent.prototype.initKeyboardEvent = function(typeArg, canBubbleArg, cancelableArg, viewArg, keyIdentifierArg, keyLocationArg, modifiersList) {};
38 /** @type {string} */
39 KeyboardEvent.prototype.char;
41 /** @type {string} */
42 KeyboardEvent.prototype.key;
44 /** @type {number} */
45 KeyboardEvent.prototype.location;
47 /** @type {boolean} */
48 KeyboardEvent.prototype.repeat;
50 /** @type {string} */
51 KeyboardEvent.prototype.locale;
53 /** @type {number} */
54 MouseEvent.prototype.buttons;
56 /** @type {boolean} */
57 Event.prototype.defaultPrevented;
59 /** @type {string} */
60 Event.prototype.namespaceURI;
62 /** @return {undefined} */
63 Event.prototype.stopImmediatePropagation = function() {};