| Summary: | [CSS Cascade Layers] Unflake and fix web-platform-tests/css/css-cascade/layer-statement-before-import.html | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Antti Koivisto <koivisto> | ||||
| Component: | CSS | Assignee: | Antti Koivisto <koivisto> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | clopez, esprehn+autocc, ews-watchlist, glenn, gyuyoung.kim, macpherson, menard, ntim, simon.fraser, webkit-bug-importer, youennf | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| See Also: | https://github.com/web-platform-tests/wpt/pull/32029 | ||||||
| Bug Depends on: | |||||||
| Bug Blocks: | 220779 | ||||||
| Attachments: |
|
||||||
|
Description
Antti Koivisto
2021-12-07 11:49:22 PST
Created attachment 446987 [details]
Patch
Submitted web-platform-tests pull request: https://github.com/web-platform-tests/wpt/pull/32029 This patch modifies the imported WPT tests. Please ensure that any changes on the tests (not coming from a WPT import) are exported to WPT. Please see https://trac.webkit.org/wiki/WPTExportProcess Comment on attachment 446987 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=446987&action=review > LayoutTests/imported/w3c/web-platform-tests/css/css-cascade/layer-statement-before-import.html:170 > + await new Promise(resolve => { > + styleElement.onload = resolve; > + styleElement.onerror = resolve; Shouldn't we reject on error? ``` await new Promise((resolve, reject) => { styleElement.onload = resolve; styleElement.onerror = reject; }); ``` or alternatively: ``` await new Promise(resolve => { styleElement.onload = resolve; styleElement.onerror = t.unreached_func("Style element should load"); }); ``` doesn't really matter for this test? Comment on attachment 446987 [details]
Patch
r+ but address Tim's test issue if appropriate.
Committed r286949 (245174@main): <https://commits.webkit.org/245174@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 446987 [details]. |