dynamic-removal-2.html 792 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Bug 1087872 - Test for dynamic removal of ruby frames</title>
  6. <link rel="stylesheet" href="common.css">
  7. <script src="dynamic-removal.js"></script>
  8. </head>
  9. <body>
  10. <p>One space should exist between 'a' and 'b':</p>
  11. <!-- inter-level white space -->
  12. <!-- => normal white space -->
  13. <p>a<rb class="remove"></rb> <rt></rt>b</p>
  14. <p>a<rb></rb> <rt class="remove"></rt>b</p>
  15. <!-- => inter-base white space -->
  16. <p>a<rb></rb> <rt class="remove"></rt><rb></rb>b</p>
  17. <!-- => inter-segment white space -->
  18. <p>a<rbc></rbc> <rtc class="remove"></rtc><rbc></rbc>b</p>
  19. <!-- => inter-annotation white space -->
  20. <p><rb>a</rb> <rb>b</rb><rt>x</rt><rb class="remove"></rb> <rt>y</rt></p>
  21. </body>