mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
715f033007
This change will make it easier to disable screenshot comparison tests on a specific platform or have per-platform expectations. Additionally, it's nice to be able to tell if a ref-test uses a screenshot as an expectation by looking at the test path.
19 lines
717 B
HTML
19 lines
717 B
HTML
<link rel="match" href="reference/meter-ref.html" />
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
body {
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
<meter value="0.5">50%</meter>
|
|
<meter value="4" max="10">4/10</meter>
|
|
<meter min="1" value="3" max="10">grade 3</meter>
|
|
<meter low="4" value="1" max="10"></meter>
|
|
<meter low="4" high="6" value="9" max="10"></meter>
|
|
<meter low="4" high="6" value="9" max="10" optimum="1"></meter>
|
|
<meter low="4" value="1" high="5" min="3" max="10" optimum="10"></meter>
|
|
<meter low="4" value="3" high="5" min="1" max="2" optimum="10"></meter>
|
|
<meter min="1" low="2" high="5" optimum="7" max="10" value="6"></meter>
|
|
<meter min="1" low="2" high="5" optimum="7" max="10" value="8"></meter>
|