Files
firefox/widget/reftests/progressbar-fallback-default-style-ref.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

22 lines
602 B
HTML

<!DOCTYPE html>
<html>
<link rel='stylesheet' href='resource://reftest/progress.css'>
<style>
div.progress-element { padding: 5px; }
body > div:nth-child(1) { -moz-appearance: none; }
body > div:nth-child(2) { background-color: red; }
body > div:nth-child(3) { border: 2px solid red; }
</style>
<body>
<div class="progress-element">
<div class="progress-bar"></div>
</div>
<div class="progress-element">
<div class="progress-bar"></div>
</div>
<div class="progress-element">
<div class="progress-bar"></div>
</div>
</body>
</html>