Closed
Bug 1517521
Opened 7 years ago
Closed 7 years ago
border-image-width doesn't handle calc() correclty.
Categories
(Core :: Layout, defect, P3)
Core
Layout
Tracking
()
RESOLVED
FIXED
mozilla66
Tracking | Status | |
---|---|---|
firefox66 | --- | fixed |
People
(Reporter: emilio, Assigned: emilio)
References
Details
Attachments
(1 file)
<!DOCTYPE html>
<style>
div {
width: 200px;
height: 200px;
border: 100px solid;
border-image: repeating-linear-gradient( 45deg, pink, pink 1%, purple 1%, purple 8%) 10;
border-image-width: calc(100%);
}
</style>
<div></div>
Asserts with:
MOZ_ASSERT_UNREACHABLE: unexpected CSS unit for border image area division
Assignee | ||
Comment 1•7 years ago
|
||
Right now it asserts, no bueno.
Assignee | ||
Updated•7 years ago
|
Priority: -- → P3
Pushed by ealvarez@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/a1ee2a2f51ea
Handle calc() on border-image-width correctly. r=dholbert
Comment 3•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox66:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla66
Created web-platform-tests PR https://github.com/web-platform-tests/wpt/pull/14712 for changes under testing/web-platform/tests
Upstream PR merged
You need to log in
before you can comment on or make changes to this bug.
Description
•