gecko-dev/layout/reftests/bugs/1375513.css
Ting-Yu Lin 0508162f38 Bug 1375513 Part 2 - Add a reftest for testing non-chrome XBL bindings with stylesheets. r=heycam
This reftest can also catch bug 1372876 because it has pseudo element rules
like ::-moz-range-progress in the XBL stylesheet.

MozReview-Commit-ID: LUicjTRzMKt

--HG--
extra : rebase_source : a7f94fce06168eb33742438157651f087bdf324f
2017-06-27 22:24:59 -07:00

18 lines
293 B
CSS

input[type=range] {
width: 200px;
height: 20px;
margin: 0;
padding: 0;
background-color: blue;
}
input[type=range]::-moz-range-progress {
height: 10px;
background-color: lime;
}
input[type=range]::-moz-range-track,
input[type=range]::-moz-range-thumb {
visibility: hidden;
}