Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-ruby/ruby-overhang-dynamic.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="UTF-8">
<title>Tests for ruby-overhang: none -> auto</title>
<link rel="match" href="ruby-overhang-dynamic-ref.html">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
  .reftest-wait .overhangNone {
    ruby-overhang: none;
  }
  div {
    font: 16px/5 Ahem;
  }
  ruby, rt {
    color: transparent;
  }
</style>
<div class=overhangNone>X<ruby>X<rt>XXXX</rt></ruby>X</div>
<script>
  requestAnimationFrame(() => {
    document.documentElement.classList.remove('reftest-wait');
  });
</script>