gecko-dev/layout/reftests/bugs/1375513-ref.html
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

29 lines
533 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Reference for bug 1375513</title>
<style type="text/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;
}
</style>
</head>
<body>
<input type="range">
</body>
</html>