Erik Nordin
Erik Nordin
We will need a separate DataProvider implementation to package data from the [IANA time-zone database](https://www.iana.org/time-zones). This should live in a separate crate for now with the other data provider implementations.
Tracks progress on issues related to TzdbDataProvider for * #887 Time Zones information will need to come from two sources. The first is from CLDR JSON, so the `CldrJsonDataProvider` will...
We still need to implement the `vv` pattern for TimeZoneFormat, which his the long time zone name. This is the canonical IANA time zone identifier. Depends on: * #992 (TzdbDataProvider)
We still need to implement the `v` pattern for TimeZoneFormat, which his the short time zone name. This is the BCP-47 identifier. Depends on: * #606
# TimeZones 1.0 This aims to be a comprehensive tracking issue for all tasks left in order to consider time zones feature-complete in ICU4X 1.0. If any new issues come...
Tracks progress on issues related to TimeZoneFormat for * #887 - [ ] TimeZoneFormat - #418 - #622 - #1232 - #983 - #984 - #985 - #986 - #987...
### Description I am currently implementing the `replace()` functionality for Constructable StyleSheets in Firefox. I noticed that the specification [steps](https://wicg.github.io/construct-stylesheets/#dom-cssstylesheet-replace) for `replace()` do not match what is implemented in Chromium....
I cannot think of any practical use to list the same sheet more than once in `adoptedStyleSheets`. e.g. ``` const sheet = new CSSStyleSheet(); document.adoptedStyleSheets = [sheet, sheet, sheet]; ```...
The `CSSStyleSheetInit` dictionary specified [here](https://wicg.github.io/construct-stylesheets/#dictdef-cssstylesheetinit) in the spec may lead to some configurations. For example, setting `title = ""` and `alternate = true` is a possible configuration using this dictionary;...
Consider when `CSSStyleSheet.replace()` needs to create a promise to either resolve or reject. In most cases, we can create a promise with the global object that we retrieve from the...