Fix CSSStyleDeclaration's item() to provide properties instead of values#31299
Merged
Loirooriol merged 1 commit intoservo:mainfrom Feb 9, 2024
Merged
Fix CSSStyleDeclaration's item() to provide properties instead of values#31299Loirooriol merged 1 commit intoservo:mainfrom
Loirooriol merged 1 commit intoservo:mainfrom
Conversation
|
🔨 Triggering try run (#7844561846) for Linux WPT, MacOS, Windows, Android |
4 tasks
|
Test results for linux-wpt-layout-2013 from try job (#7844561846): Flaky unexpected result (15)
Stable unexpected results that are known to be intermittent (10)
Stable unexpected results (1)
|
|
Test results for linux-wpt-layout-2020 from try job (#7844561846): Flaky unexpected result (14)
Stable unexpected results that are known to be intermittent (16)
Stable unexpected results (1)
|
For example,
style.cssText = "margin: 1px 2px 3px 4px";
[...style];
will now be
["margin-top", "margin-right", "margin-bottom", "margin-left"]
instead of
["1px", "2px", "3px", "4px"]
323a83d to
2c7e098
Compare
mrobinson
approved these changes
Feb 9, 2024
|
🔨 Triggering try run (#7845146670) for Linux WPT, MacOS, Windows, Android |
|
|
|
Test results for linux-wpt-layout-2013 from try job (#7845146670): Flaky unexpected result (12)
Stable unexpected results that are known to be intermittent (11)
|
|
Test results for linux-wpt-layout-2020 from try job (#7845146670): Flaky unexpected result (17)
Stable unexpected results that are known to be intermittent (13)
|
|
✨ Try run (#7845146670) succeeded. |
Taym95
pushed a commit
to Taym95/servo
that referenced
this pull request
Feb 11, 2024
…ues (servo#31299) For example, style.cssText = "margin: 1px 2px 3px 4px"; [...style]; will now be ["margin-top", "margin-right", "margin-bottom", "margin-left"] instead of ["1px", "2px", "3px", "4px"]
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.
For example,
will now be
instead of
./mach build -ddoes not report any errors./mach test-tidydoes not report any errors