mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
19 lines
421 B
HTML
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>
|