@@ -742,7 +742,6 @@ and element = object
742742
743743 method offsetTop : int readonly_prop
744744
745- (* Incorrect in IE until IE7 included *)
746745 method offsetParent : element t opt readonly_prop
747746
748747 method offsetWidth : int readonly_prop
@@ -925,7 +924,6 @@ class type selectElement = object ('self)
925924
926925 method _type : js_string t readonly_prop
927926
928- (* Cannot be changed under IE *)
929927 method selectedIndex : int prop
930928
931929 method value : js_string t prop
@@ -942,7 +940,6 @@ class type selectElement = object ('self)
942940
943941 method name : js_string t readonly_prop
944942
945- (* Cannot be changed under IE *)
946943 method size : int prop
947944
948945 method tabIndex : int prop
@@ -953,7 +950,6 @@ class type selectElement = object ('self)
953950
954951 method required : bool t writeonly_prop
955952
956- (* Not supported by IE 9/Safari *)
957953 method onchange : ('self t, event t) event_listener prop
958954
959955 method oninput : ('self t, event t) event_listener prop
@@ -972,6 +968,7 @@ class type inputElement = object ('self)
972968
973969 method accessKey : js_string t prop
974970
971+ (* deprecated *)
975972 method align : js_string t prop
976973
977974 method alt : js_string t prop
@@ -984,12 +981,10 @@ class type inputElement = object ('self)
984981
985982 method name : js_string t readonly_prop
986983
987- (* Cannot be changed under IE *)
988984 method readOnly : bool t prop
989985
990986 method required : bool t writeonly_prop
991987
992- (* Not supported by IE 9/Safari *)
993988 method size : int prop
994989
995990 method src : js_string t prop
@@ -998,7 +993,7 @@ class type inputElement = object ('self)
998993
999994 method _type : js_string t readonly_prop
1000995
1001- (* Cannot be changed under IE *)
996+ (* Deprecated *)
1002997 method useMap : js_string t prop
1003998
1004999 method value : js_string t prop
@@ -1009,7 +1004,6 @@ class type inputElement = object ('self)
10091004
10101005 method placeholder : js_string t writeonly_prop
10111006
1012- (* Not supported by IE 9 *)
10131007 method selectionDirection : js_string t prop
10141008
10151009 method selectionStart : int prop
@@ -1042,7 +1036,6 @@ class type textAreaElement = object ('self)
10421036
10431037 method name : js_string t readonly_prop
10441038
1045- (* Cannot be changed under IE *)
10461039 method readOnly : bool t prop
10471040
10481041 method rows : int prop
@@ -1057,17 +1050,14 @@ class type textAreaElement = object ('self)
10571050
10581051 method _type : js_string t readonly_prop
10591052
1060- (* Cannot be changed under IE *)
10611053 method value : js_string t prop
10621054
10631055 method select : unit meth
10641056
10651057 method required : bool t writeonly_prop
10661058
1067- (* Not supported by IE 9/Safari *)
10681059 method placeholder : js_string t writeonly_prop
10691060
1070- (* Not supported by IE 9 *)
10711061 method onselect : ('self t, event t) event_listener prop
10721062
10731063 method onchange : ('self t, event t) event_listener prop
@@ -1090,12 +1080,10 @@ class type buttonElement = object
10901080
10911081 method name : js_string t readonly_prop
10921082
1093- (* Cannot be changed under IE *)
10941083 method tabIndex : int prop
10951084
10961085 method _type : js_string t readonly_prop
10971086
1098- (* Cannot be changed under IE *)
10991087 method value : js_string t prop
11001088end
11011089
@@ -3226,8 +3214,6 @@ val _requestAnimationFrame : (unit -> unit) Js.callback -> unit
32263214
32273215val decode_html_entities : js_string t -> js_string t
32283216
3229- val onIE : bool
3230-
32313217val hasPushState : unit -> bool
32323218
32333219val hasPlaceholder : unit -> bool
0 commit comments