Deprecate script element "type" attribute (and "charset" and "type" IDL attributes of HTMLScriptElement)#7264
Merged
foolip merged 2 commits intomdn:masterfrom Nov 4, 2020
Conversation
This change marks as deprecated the "charset" and "type" IDL attributes of the HTMLScriptElement interface, because the HTML spec at https://html.spec.whatwg.org/multipage/obsolete.html defines the corresponding content/markup attributes as obsolete. Other than those attributes, we’ve already marked as deprecated all other HTMLScriptElement IDL attributes for which the HTML spec defines the corresponding content/markup attributes as obsolete. Relates to mdn#7255
This change marks the "type" attribute of the script element as deprecated, because at https://html.spec.whatwg.org/multipage/obsolete.html, the HTML spec defines that attribute as obsolete. Other than hat attribute, we’ve already marked as deprecated all other script attributes that the HTML spec defines as obsolete. Relates to mdn#7255
foolip
approved these changes
Nov 4, 2020
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR marks the
typeattribute of thescriptelement as deprecated, because at https://html.spec.whatwg.org/multipage/obsolete.html, the HTML spec defines that attribute as obsolete.Other than that, we’ve already marked as deprecated all other
scriptattributes that the HTML spec defines as obsolete.This PR also marks as deprecated the
charsetandtypeIDL attributes of theHTMLScriptElementinterface, because the HTML spec defines the corresponding content/markup attributes as obsolete.Other than those attributes, we’ve already marked as deprecated all other
HTMLScriptElementIDL attributes for which the HTML spec defines the corresponding content/markup attributes as obsolete.Relates to #7255