Bug 271706
| Summary: | [css-align] Fix serialization of place-content/items/self properties | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Karl Dubost <karlcow> |
| Component: | CSS | Assignee: | Tim Nguyen (:ntim) <ntim> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | ntim, webkit-bug-importer |
| Priority: | P2 | Keywords: | BrowserCompat, InRadar, WPTImpact |
| Version: | Safari 17 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | https://wpt.fyi/results/css/css-align/parsing/place-content-computed.html | ||
Karl Dubost
With
<div id="target" style="place-content: normal;">foo</div>
And
const target = document.querySelector('#target');
target.style.cssText;
target.style.getPropertyValue('place-content');
window.getComputedStyle(target).placeContent;
Safari
cssText: "align-content: normal; justify-content: normal;"
getPropertyValue: "normal"
getComputedStyle: "normal normal"
Firefox
cssText: "place-content: normal;"
getPropertyValue: "normal"
getComputedStyle: "normal"
Chrome
cssText: "place-content: normal;"
getPropertyValue: "normal"
getComputedStyle: "normal"
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/125415088>
Tim Nguyen (:ntim)
Pull request: https://github.com/WebKit/WebKit/pull/31358
EWS
Committed 281476@main (e095068eb230): <https://commits.webkit.org/281476@main>
Reviewed commits have been landed. Closing PR #31358 and removing active labels.