Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-transform/text-transform-uppercase-dynamic.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<link rel="match" href="reference/text-transform-uppercase-dynamic-ref.html">
<style>
.test { text-transform: uppercase; }
</style>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.getElementById('sp').setAttribute('lang', 'my');
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
<div class="test" lang="lt">
<span id="sp">i̇̃ Ĩ</span>
</div>
</html>