View | Details | Raw Unified | Return to bug 262721
Collapse All | Expand All

(-)libraries/browserWindow.js (+30 lines)
Lines 30-36 Link Here
30
Window.prototype.scrollByPages=function(arg1){};
30
Window.prototype.scrollByPages=function(arg1){};
31
Window.prototype.sizeToContent=function(){};
31
Window.prototype.sizeToContent=function(){};
32
Window.prototype.dump=function(arg1){};
32
Window.prototype.dump=function(arg1){};
33
/**
34
 * function setTimeout() 
35
 * @type    Object
36
 * @memberOf  Window
37
 * @returns {Object}
38
 */
33
Window.prototype.setTimeout=function(){};
39
Window.prototype.setTimeout=function(){};
40
/**
41
 * function setInterval() 
42
 * @type    Object
43
 * @memberOf  Window
44
 * @returns {Object}
45
 */
34
Window.prototype.setInterval=function(){};
46
Window.prototype.setInterval=function(){};
35
Window.prototype.clearTimeout=function(){};
47
Window.prototype.clearTimeout=function(){};
36
Window.prototype.clearInterval=function(){};
48
Window.prototype.clearInterval=function(){};
Lines 40-45 Link Here
40
Window.prototype.routeEvent=function(arg1){};
52
Window.prototype.routeEvent=function(arg1){};
41
Window.prototype.enableExternalCapture=function(){};
53
Window.prototype.enableExternalCapture=function(){};
42
Window.prototype.disableExternalCapture=function(){};
54
Window.prototype.disableExternalCapture=function(){};
55
/**
56
 * function prompt() 
57
 * @type    String
58
 * @memberOf  Window
59
 * @returns {String}
60
 */
43
Window.prototype.prompt=function(){};
61
Window.prototype.prompt=function(){};
44
Window.prototype.open=function(){};
62
Window.prototype.open=function(){};
45
Window.prototype.openDialog=function(){};
63
Window.prototype.openDialog=function(){};
Lines 71-76 Link Here
71
Window.prototype.scrollMaxY="";
89
Window.prototype.scrollMaxY="";
72
Window.prototype.fullScreen="";
90
Window.prototype.fullScreen="";
73
Window.prototype.alert=function(arg1){};
91
Window.prototype.alert=function(arg1){};
92
/**
93
 * function confirm() 
94
 * @type    Object
95
 * @memberOf  Window
96
 * @returns {Object}
97
 */
74
Window.prototype.confirm=function(arg1){};
98
Window.prototype.confirm=function(arg1){};
75
Window.prototype.focus=function(){};
99
Window.prototype.focus=function(){};
76
Window.prototype.blur=function(){};
100
Window.prototype.blur=function(){};
Lines 91-96 Link Here
91
Window.prototype.frameElement="";
115
Window.prototype.frameElement="";
92
Window.prototype.removeEventListener=function(arg1,arg2,arg3){};
116
Window.prototype.removeEventListener=function(arg1,arg2,arg3){};
93
Window.prototype.dispatchEvent=function(arg1){};
117
Window.prototype.dispatchEvent=function(arg1){};
118
/**
119
 * function getComputedStyle() 
120
 * @type    Object
121
 * @memberOf  Window
122
 * @returns {Object}
123
 */
94
Window.prototype.getComputedStyle=function(arg1,arg2){};
124
Window.prototype.getComputedStyle=function(arg1,arg2){};
95
Window.prototype.sessionStorage="";
125
Window.prototype.sessionStorage="";
96
Window.prototype.location=new location();
126
Window.prototype.location=new location();

Return to bug 262721