-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove invalid deprecation flags #7709
Comments
This change marks the usemap content/markup attribute of the img element and the usemap IDL/DOM attribute of the HTMLImageElement interface deprecated:false. They were mistakenly marked deprecated:false in mdn@b3ea219 Relates to mdn#7709
This change marks the "type" content/markup attribute of the script element and the "type" IDL/DOM attribute of the HTMLScriptElement interface deprecated:false. They were mistakenly marked deprecated:true in mdn@a6f6d39 Relates to mdn#7709
This change marks the usemap content/markup attribute of the img element and the useMap IDL/DOM attribute of the HTMLImageElement interface deprecated:false. They were mistakenly marked deprecated:true in mdn@b3ea219 Relates to mdn#7709
This change marks DOMPointReadOnly.p.matrixTransform deprecated:false. Per https://drafts.fxtf.org/geometry/#dom-dompointreadonly-matrixtransform it’s not currently deprecated (and it’s not clear it should ever have been marked deprecated:true to begin with). Related: mdn#7709
This change marks the "areas" & "name" attributes of the HTMLMapElement interface deprecated:false, because the spec does not deprecate them. Related: mdn#7709
➡ #7713
➡️ #7719 |
This change marks the "areas" & "name" attributes of the HTMLMapElement interface deprecated:false, because the spec does not deprecate them. Related: #7709
This change marks DOMPointReadOnly.p.matrixTransform deprecated:false. Per https://drafts.fxtf.org/geometry/#dom-dompointreadonly-matrixtransform it’s not currently deprecated (and it’s not clear it should ever have been marked deprecated:true to begin with). Related: #7709
While I was working on saschanaz/types-web@7c382a0 I found some invalid flags:
DOMPointReadOnly#matrixTransform
: I see no reason to mark this as deprecated. This is a valid API.HTMLImageElement#useMap
: Same.HTMLMapElement#areas
: While a selector call can easily replace this, this is still a useful shortcut and the spec does not mark it as deprecated.HTMLMapElement#name
: This is actually "required" by the spec.HTMLScriptElement#type
: You know,type=module
.SVGPathElement#getPointAtLength
andSVGPathElement#getTotalLength
: Both are moved to the superclass SVGGeometryElement. Those should be just removed.The text was updated successfully, but these errors were encountered: