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
22 lines
602 B
HTML
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>
|