mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
25 lines
520 B
HTML
25 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<style>
|
|
#foo {
|
|
font-size: 0px;
|
|
}
|
|
|
|
#bar {
|
|
font-size: 2px;
|
|
math-depth: calc(sign(1em - 1px));
|
|
}
|
|
</style>
|
|
<div id="foo">
|
|
<div id="bar"></div>
|
|
</div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(getComputedStyle(bar).mathDepth);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|