-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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
FF91: DateTimeFormat timeZoneName options #6853
Merged
sideshowbarker
merged 4 commits into
mdn:main
from
hamishwillee:ff91_timezonename_options
Jul 16, 2021
Merged
FF91: DateTimeFormat timeZoneName options #6853
sideshowbarker
merged 4 commits into
mdn:main
from
hamishwillee:ff91_timezonename_options
Jul 16, 2021
Conversation
This file contains 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
hamishwillee
requested review from
sideshowbarker
and removed request for
a team
July 13, 2021 09:26
7 tasks
Preview URLsFlawsNone! 🎉 External URLsURL: No new external URLs (this comment was updated 2021-07-16 04:50:48.764305) |
sideshowbarker
approved these changes
Jul 13, 2021
sideshowbarker
approved these changes
Jul 13, 2021
sideshowbarker
approved these changes
Jul 13, 2021
.../en-us/web/javascript/reference/global_objects/intl/datetimeformat/datetimeformat/index.html
Outdated
Show resolved
Hide resolved
.../en-us/web/javascript/reference/global_objects/intl/datetimeformat/datetimeformat/index.html
Outdated
Show resolved
Hide resolved
…imeformat/datetimeformat/index.html Co-authored-by: Michael[tm] Smith <mike@w3.org>
…imeformat/datetimeformat/index.html Co-authored-by: Michael[tm] Smith <mike@w3.org>
…in non-location formats
Thanks @sideshowbarker . I've merged your commits and added a note about what "non-location formats" mean. Should be ready for another look. |
wbamberg
added a commit
to jadjoubran/content
that referenced
this pull request
Jul 16, 2021
* upstream/main: (36 commits) unbreak redirects from archived content (mdn#6979) Add an example for IntersectionObserver.observe() (mdn#6898) chore(deps): bump @mdn/yari from 0.4.602 to 0.4.605 (mdn#6975) Document that FinalizationRegistry's callback is not optional (mdn#6963) Removes see compat table and fix heading flaw (mdn#6964) Update BCD paths for console (api.Console.* -> api.console.*) (mdn#6969) Fold XREnvironmentBlendMode into XRSession.environmentBlendMode (mdn#6967) Document XRSession.interactionMode (mdn#6961) Mark PaymentRequestEvent.p.instrumentKey deprecated and non-standard (mdn#6960) added clarity (mdn#6942) FF91: DateTimeFormat timeZoneName options (mdn#6853) Fix typo: frequenies -> frequencies (mdn#6958) Fix code formatting in JS “new operator” doc (mdn#6954) improved mechanics (mdn#6940) fixed mechanics (mdn#6947) fixed punctuation, added clarity (mdn#6949) Fix taller interactive examples (mdn#6950) HTMLDialogElement: Add the 'cancel` event to the event list (mdn#6939) Remove window. and similar from WindowOrWorkerGlobalScope docs (mdn#6938) Remove notes about deep parameters (mdn#6934) ...
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Intl.DateTimeFormat() constructor has a number of new options for timeZoneName which were added in https://bugzilla.mozilla.org/show_bug.cgi?id=1710429.
Info about the addition also in https://github.com/tc39/proposal-intl-extend-timezonename/
This add docs for the option and an example.
This is part of #6710