From the DevTools-> Rules Tab
input {
line-height: normal;
-moz-appearance: none;
border-radius: 0;
}
If I remove `moz-appereance` or check it (it is unchecked), the checkboxes are visible. I've created a reduced test case to highlight this. Some others fixes were observed, but I could not create reduced test cases for them.
Bug 2015851 Comment 1 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
From the HTML code, selecting `<input name="devicecheck" required="" type="checkbox" value="1">` and then from the DevTools-> Rules Tab:
input {
line-height: normal;
-moz-appearance: none;
border-radius: 0;
}
-> If I remove `moz-appereance` or un-check it (it is checked), the checkboxes are visible. I've created a reduced test case to highlight this. Some others fixes were observed, but I could not create reduced test cases for them.