|
@@ -50,7 +50,6 @@ typedef MetaDom<T> = {
|
|
function replaceChild( child : T, oldChild : T ) : Void;
|
|
function replaceChild( child : T, oldChild : T ) : Void;
|
|
function getAttribute( attr : String ) : String;
|
|
function getAttribute( attr : String ) : String;
|
|
function setAttribute( attr : String, val : String ) : Void;
|
|
function setAttribute( attr : String, val : String ) : Void;
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
typedef Dom = MetaDom<Dom>
|
|
typedef Dom = MetaDom<Dom>
|
|
@@ -65,6 +64,8 @@ typedef HtmlDom = {> MetaDom<HtmlDom>,
|
|
|
|
|
|
var style : Style;
|
|
var style : Style;
|
|
|
|
|
|
|
|
+ function getElementsByTagName() : HtmlCollection<HtmlDom>;
|
|
|
|
+
|
|
#if w3c
|
|
#if w3c
|
|
#else true
|
|
#else true
|
|
var onscroll : Event -> Void;
|
|
var onscroll : Event -> Void;
|