-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Add a reference to Intl (ECMA 402) #1977
Conversation
@@ -2977,6 +2977,8 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d | |||
<p>Some parts of the language described by this specification only support JavaScript as the | |||
underlying scripting language. <ref spec=JAVASCRIPT></p> | |||
|
|||
<p>JavaScript in HTML must support the Intl object. <ref spec=JSINTL></p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd phrase this as User agents that support JavaScript must also support the <code data-x="">Intl</code> object.
I applied some minor touchups to this PR and it should be ready to merge, but I'd love another editor's opinion. |
@@ -2977,6 +2977,10 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d | |||
<p>Some parts of the language described by this specification only support JavaScript as the | |||
underlying scripting language. <ref spec=JAVASCRIPT></p> | |||
|
|||
<p>Users agents that support JavaScript must also support the <a | |||
href="https://tc39.github.io/ecma402/#intl-object"><code data-x="">Intl</code></a> object. <ref | |||
spec=JSINTL></p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we just require support for that spec in case other features get added?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that makes more sense
Closes #1976