mirror of
https://github.com/mozilla-firefox/firefox
synced 2026-08-12 12:35:33 +00:00
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
15 lines
359 B
HTML
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>
|