Files
ladybird/Tests/LibWeb/Text/input/css/nearest-integer-rounds-up-on-half.html

14 lines
226 B
HTML

<!doctype html>
<style>
#foo {
order: calc(-1.5);
}
</style>
<div id="foo"></div>
<script src="../include.js"></script>
<script>
test(() => {
println(getComputedStyle(foo).order);
});
</script>