[Webkit-unassigned] [Bug 271706] New: [serialization] when setting place-content property, it should stay as place-content
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Mar 26 07:20:59 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=271706
Bug ID: 271706
Summary: [serialization] when setting place-content property,
it should stay as place-content
Product: WebKit
Version: Safari 17
Hardware: Unspecified
URL: https://wpt.fyi/results/css/css-align/parsing/place-co
ntent-computed.html
OS: Unspecified
Status: NEW
Keywords: BrowserCompat, WPTImpact
Severity: Normal
Priority: P2
Component: CSS
Assignee: webkit-unassigned at lists.webkit.org
Reporter: karlcow at apple.com
CC: ntim at apple.com, webkit-bug-importer at group.apple.com
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"
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240326/ee980a24/attachment.htm>
More information about the webkit-unassigned
mailing list