[Webkit-unassigned] [Bug 266145] New: Fix typo 'align-contents' to 'align-content' for 'input[type="range"]::-webkit-slider-container' in html.css
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sat Dec 9 06:04:58 PST 2023
https://bugs.webkit.org/show_bug.cgi?id=266145
Bug ID: 266145
Summary: Fix typo 'align-contents' to 'align-content' for
'input[type="range"]::-webkit-slider-container' in
html.css
Product: WebKit
Version: Safari Technology Preview
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: CSS
Assignee: webkit-unassigned at lists.webkit.org
Reporter: ahmad.saleem792 at gmail.com
Hi Team,
While looking into html.css noted, I noticed that we have align-contents' which is incorrect and it should be 'align-content'.
WebKit Source: https://searchfox.org/wubkat/rev/e171a196292b735a205a9adede19a265f93fb4a7/Source/WebCore/css/html.css#948
input[type="range"]::-webkit-slider-container, input[type="range"]::-webkit-media-slider-container {
flex: 1;
box-sizing: border-box;
display: flex;
align-contents: center; <----
min-width: 0;
}
to:
input[type="range"]::-webkit-slider-container, input[type="range"]::-webkit-media-slider-container {
flex: 1;
box-sizing: border-box;
display: flex;
align-content: center;
min-width: 0;
}
> I checked with 'MDN' as well: https://developer.mozilla.org/en-US/docs/Web/CSS/align-content
Just wanted to raise so we can fix it.
Thanks!
--
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/20231209/e22312d9/attachment-0001.htm>
More information about the webkit-unassigned
mailing list