Revision 4cf8fee05923acb9f47e6afefcfb1eff41a60dc4 authored by Botond Ballo on 16 January 2014, 20:19:59 UTC, committed by Botond Ballo on 16 January 2014, 20:19:59 UTC
1 parent f24555e
Raw File
meter-fallback-default-style.html
<!DOCTYPE html>
<html>
  <style>
    meter { padding: 5px }
    body > meter:nth-child(1) { -moz-appearance: none; }
    body > meter:nth-child(2)::-moz-meter-bar { -moz-appearance: none; }
    body > meter:nth-child(3) { background: red; }
    body > meter:nth-child(4)::-moz-meter-bar { background: red; }
    body > meter:nth-child(5) { border: 2px solid red; }
    body > meter:nth-child(6)::-moz-meter-bar { border: 5px solid red; }
  </style>
  <body>
    <meter value=1></meter>
    <meter value=1></meter>
    <meter value=1></meter>
    <meter value=1></meter>
    <meter value=1></meter>
    <meter value=1></meter>
  </body>
</html>
back to top