mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
20 lines
499 B
HTML
20 lines
499 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#theDiv {
|
|
width: max-content;
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<div id="theDiv">heLLo FrIends</div>
|
|
<script>
|
|
test(() => {
|
|
println(theDiv.offsetWidth);
|
|
theDiv.style.textTransform = 'uppercase';
|
|
println(theDiv.offsetWidth);
|
|
theDiv.style.textTransform = 'lowercase';
|
|
println(theDiv.offsetWidth);
|
|
theDiv.style.textTransform = 'capitalize';
|
|
println(theDiv.offsetWidth);
|
|
});
|
|
</script>
|