Files
firefox/widget/reftests/progressbar-fallback-default-style.html
Emilio Cobos Álvarez 7e9f44c2d3 Bug 1971450 - Remove internal appearance values for meter / progress / range thumb / chunk. r=dshin
This is technically a behavior change because we don't really look at
the appearance value of the progressbar etc anymore. We could do that if
wanted, but it's more consistent to just look at the individual frame
(looking forward to appearance: base and other potential compat
improvements we could make in the area).

Differential Revision: https://phabricator.services.mozilla.com/D253256
2025-06-16 23:16:37 +00:00

15 lines
359 B
HTML

<!DOCTYPE html>
<html>
<style>
progress { padding: 5px }
body > progress:nth-child(1) { -moz-appearance: none; }
body > progress:nth-child(2) { background-color: red; }
body > progress:nth-child(3) { border: 2px solid red; }
</style>
<body>
<progress></progress>
<progress></progress>
<progress></progress>
</body>
</html>