Closed
Bug 1331529
Opened 8 years ago
Closed 8 years ago
stylo: Implement glue for flex-basis
Categories
(Core :: CSS Parsing and Computation, defect, P1)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
firefox53 | --- | affected |
People
(Reporter: xidorn, Assigned: canova)
References
Details
Testcase:
<!DOCTYPE html>
<p style="flex-basis: 1px"></p>
<script>
alert(getComputedStyle(document.querySelector('p')).flexBasis);
</script>
It should return "1px" but it returns the initial value of flex-basis which is "auto".
It seems this is expected as we haven't implemented glue for flex-basis given comment in gecko.mako.rs [1].
[1] https://github.com/servo/servo/blob/66af7e4d3aeabcdecf08c8ada8cf2ed1b5ba2d64/components/style/properties/gecko.mako.rs#L459
Assignee | ||
Comment 4•8 years ago
|
||
Opened a PR in Servo: https://github.com/servo/servo/pull/15896
Comment 5•8 years ago
|
||
Nazim's PR for this landed in Servo. Nice work!
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•