Closed
Bug 1365822
Opened 8 years ago
Closed 8 years ago
stylo: github's search box doesn't have correct padding
Categories
(Core :: CSS Parsing and Computation, defect, P1)
Tracking
()
RESOLVED
FIXED
People
(Reporter: shinglyu, Assigned: heycam)
References
Details
Attachments
(2 files)
STR:
* Open https://www.github.com/servo/servo
* Type a very long string into the "This repository" search box
* Observe the right side padding of the box
Expected:
* There should be a padding at the right, roughly the same width as the left side padding
Actual:
* In stylo there is no such padding
Note:
The search box uses "box-sizing: border-box", which might be the cause of the bug
| Reporter | ||
Updated•8 years ago
|
| Reporter | ||
Comment 1•8 years ago
|
||
Updated•8 years ago
|
Priority: -- → P1
| Assignee | ||
Updated•8 years ago
|
Assignee: nobody → cam
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•8 years ago
|
||
I think I've finally narrowed this down to overflow-clip-box declarations from the UA style sheet not taking effect on the <input>'s anonymous div:
19:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
111:3 Unsupported property declaration: 'overflow-clip-box: content-box;', found unexpected identifier content-box
160:3 Unsupported property declaration: 'overflow-clip-box: content-box;', found unexpected identifier content-box
184:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
271:3 Unsupported property declaration: 'overflow-clip-box: padding-box !important;', found unexpected delimiter !
499:3 Unsupported property declaration: 'overflow-clip-box: padding-box;', found unexpected identifier padding-box
653:3 Unsupported property declaration: 'overflow-clip-box: padding-box;', found unexpected identifier padding-box
141:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
156:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
175:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
223:3 Unsupported property declaration: 'overflow-clip-box: inherit;', found unexpected identifier inherit
Haven't yet looked into why.
| Assignee | ||
Comment 3•8 years ago
|
||
It's an incorrect interaction between internal="True" and the property having a pref.
| Assignee | ||
Comment 4•8 years ago
|
||
Fixed by bug 1375374.
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•