Closed
Bug 1406268
Opened 8 years ago
Closed 8 years ago
Handle clamping width/height of checkbox/radio on Linux
Categories
(Core :: Widget: Gtk, enhancement, P3)
Tracking
()
RESOLVED
FIXED
mozilla59
Tracking | Status | |
---|---|---|
firefox59 | --- | fixed |
People
(Reporter: lochang, Assigned: lochang)
References
(Depends on 2 open bugs)
Details
Attachments
(2 files)
Currently, we do not handle clamping width/height of checkbox/radio on Windows. We expect a 30px*30px checkbox in the test case. But it is a 18px*18px (minimum size) checkbox.
Assignee | ||
Comment 1•8 years ago
|
||
(In reply to Louis Chang [:louis] from comment #0)
> Currently, we do not handle clamping width/height of checkbox/radio on
> Windows. We expect a 30px*30px checkbox in the test case. But it is a
> 18px*18px (minimum size) checkbox.
s/Windows/Linux/
Comment 2•8 years ago
|
||
It would be good to fix this before bug 1368555, so that when we start to
recognize -webkit-appearance:checkbox/radio it actually renders the same
as in Chrome. It's probably not a blocking issue though...
Comment hidden (mozreview-request) |
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → lochang
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•8 years ago
|
||
Hi mats,
Could you review the patch for me? Thanks.
I change to use rect->widht/height instead of minimum width/height when painting checkbox/radio.
Assignee | ||
Comment 5•8 years ago
|
||
Test result:
https://treeherder.mozilla.org/#/jobs?repo=try&revision=e7ab8a028f4cf02e55aba80505605387f5cb19a1&selectedJob=143270972
The patch breaks test gtk-theme-width-height.html. I will look into it.
Assignee | ||
Comment 6•8 years ago
|
||
Since now we accept the specified size instead of always using minimum size on Linux. It seems reasonable that the left part of checkbox (<input checked="" style="width:400px; height:100px; outline:none;" type="checkbox">) will show up in the testcase gtk-theme-width-height.html. Maybe we should somehow fix the testcase?
Comment 7•8 years ago
|
||
mozreview-review |
Comment on attachment 8926781 [details]
Bug 1406268 - Use rect width/height instead of minimum width/height and clamp the rect on Linux.
https://reviewboard.mozilla.org/r/198034/#review205642
Looks great, r=mats
Could also make the same change to widget/gtk/gtk2drawing.c please?
https://searchfox.org/mozilla-central/rev/9bab9dc5a9472e3c163ab279847d2249322c206e/widget/gtk/gtk2drawing.c#1047-1056
Attachment #8926781 -
Flags: review?(mats) → review+
Comment 8•8 years ago
|
||
(In reply to Louis Chang [:louis] from comment #6)
> Since now we accept the specified size instead of always using minimum size
> on Linux. It seems reasonable that the left part of checkbox (<input
> checked="" style="width:400px; height:100px; outline:none;"
> type="checkbox">) will show up in the testcase gtk-theme-width-height.html.
> Maybe we should somehow fix the testcase?
Yeah, the checkbox rendering bleeds in a little on the right side
in the box at the top. I think we can just clip it a bit narrower
to avoid that. s/160px/120px/ or something?
Comment 9•8 years ago
|
||
BTW, can you add this to your .hgrc file unless you have it please?
(to make it a bit easier to see which function is being changed):
[diff]
showfunc = true
Comment hidden (mozreview-request) |
Assignee | ||
Comment 11•8 years ago
|
||
(In reply to Mats Palmgren (:mats) from comment #9)
> BTW, can you add this to your .hgrc file unless you have it please?
> (to make it a bit easier to see which function is being changed):
>
> [diff]
> showfunc = true
I already set showfunc = 1 in my .hgrc file, not sure why you could not see the changed function name. Anyway I have changed it to showfunc = true.
Assignee | ||
Comment 12•8 years ago
|
||
Assignee | ||
Updated•8 years ago
|
Keywords: checkin-needed
Comment 13•8 years ago
|
||
Pushed by ryanvm@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/37707fcd8a55
Use rect width/height instead of minimum width/height and clamp the rect on Linux. r=mats
Keywords: checkin-needed
Comment 14•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla59
Comment 15•7 years ago
|
||
This depends on the theme which is actually used. I don't see the checkbox 30px*30px with the adwaita. This should be done by fixing the metrics (if there is a mistake in the computing), see how it is computed and why [1]. What theme is triggering this problem?
[1] https://searchfox.org/mozilla-central/rev/08df4e6e11284186d477d7e5b0ae48483ecc979c/widget/gtk/gtk3drawing.cpp#2862
You need to log in
before you can comment on or make changes to this bug.
Description
•