Skip to content

Commit b9fad2d

Browse files
authored
Note that the video.onresize property was not in IE/EdgeHTML (mdn#16865)
Confirmed with this test in IE 11 and Edge 18: http://software.hixie.ch/utilities/js/live-dom-viewer/?saved=10451 It seems like this was a problem for onresize specifically, probably a mishap because there was already a window.onresize property.
1 parent 61d1225 commit b9fad2d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

api/HTMLVideoElement.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -681,15 +681,25 @@
681681
"version_added": "1"
682682
},
683683
"chrome_android": "mirror",
684-
"edge": {
685-
"version_added": "12"
686-
},
684+
"edge": [
685+
{
686+
"version_added": "79"
687+
},
688+
{
689+
"version_added": "12",
690+
"version_removed": "79",
691+
"partial_implementation": true,
692+
"notes": "The <code>onresize</code> event handler property is not supported."
693+
}
694+
],
687695
"firefox": {
688696
"version_added": "3.5"
689697
},
690698
"firefox_android": "mirror",
691699
"ie": {
692-
"version_added": "9"
700+
"version_added": "9",
701+
"partial_implementation": true,
702+
"notes": "The <code>onresize</code> event handler property is not supported."
693703
},
694704
"opera": {
695705
"version_added": "10.5"

0 commit comments

Comments
 (0)