Files
ladybird/Tests/LibWeb/Text/input/css/text-underline-position.html
2025-09-15 15:24:20 +01:00

19 lines
421 B
HTML

<!DOCTYPE html>
<html>
<style>
span {
text-decoration: underline;
}
</style>
<div>
<span style="text-underline-position: auto">foo</span>
<span style="text-underline-position: under">bar</span>
</div>
<script src="../include.js"></script>
<script>
test(() => {
println(internals.dumpDisplayList());
});
</script>
</html>