@@ -21,7 +21,6 @@ declare namespace BlissNS {
21
21
classProps : Object ;
22
22
23
23
create ( tag : "a" ) : HTMLAnchorElement ;
24
- create ( tag : "applet" ) : HTMLAppletElement ;
25
24
create ( tag : "area" ) :HTMLAreaElement ;
26
25
create ( tag : "audio" ) : HTMLAudioElement ;
27
26
create ( tag : "base" ) : HTMLBaseElement ;
@@ -74,7 +73,6 @@ declare namespace BlissNS {
74
73
create < T > ( options : Object ) : BlissDecoratedElement < T > ;
75
74
76
75
create ( tag : "a" , options : Object ) : HTMLAnchorElement ;
77
- create ( tag : "applet" , options : Object ) : HTMLAppletElement ;
78
76
create ( tag : "area" , options : Object ) : HTMLAreaElement ;
79
77
create ( tag : "audio" , options : Object ) : HTMLAudioElement ;
80
78
create ( tag : "base" , options : Object ) : HTMLBaseElement ;
@@ -270,7 +268,6 @@ declare namespace BlissNS {
270
268
insertAdjacentElement ( position : string , insertedElement : Element ) : Element ;
271
269
insertAdjacentHTML ( where : string , html : string ) : T ;
272
270
insertAdjacentText ( where : string , text : string ) : T ;
273
- msGetInputContext ( ) : MSInputMethodContext ;
274
271
scrollIntoView ( top ?: boolean ) : T ;
275
272
setActive ( ) : T ;
276
273
addEventListener ( type : "MSContentZoom" , listener : ( ev : UIEvent ) => any , useCapture ?: boolean ) : T ;
@@ -363,12 +360,10 @@ declare namespace BlissNS {
363
360
getAttributeNode ( name : string ) : Attr ;
364
361
getAttributeNodeNS ( namespaceURI : string , localName : string ) : Attr ;
365
362
getBoundingClientRect ( ) : ClientRect ;
366
- getClientRects ( ) : ClientRectList ;
367
363
getElementsByTagName ( name : "a" ) : NodeListOf < HTMLAnchorElement > ;
368
364
getElementsByTagName ( name : "abbr" ) : NodeListOf < HTMLElement > ;
369
365
getElementsByTagName ( name : "acronym" ) : NodeListOf < HTMLElement > ;
370
366
getElementsByTagName ( name : "address" ) : NodeListOf < HTMLElement > ;
371
- getElementsByTagName ( name : "applet" ) : NodeListOf < HTMLAppletElement > ;
372
367
getElementsByTagName ( name : "area" ) : NodeListOf < HTMLAreaElement > ;
373
368
getElementsByTagName ( name : "article" ) : NodeListOf < HTMLElement > ;
374
369
getElementsByTagName ( name : "aside" ) : NodeListOf < HTMLElement > ;
0 commit comments