alt-display-vertical-001-manual.html (994B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Writing Modes Test: alternate text should display in the writing mode of associated element</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#block-flow"> 9 10 <meta content="should" name="flags"> 11 12 <style> 13 .vrl 14 { 15 float: right; 16 writing-mode: vertical-rl; 17 } 18 19 .vlr 20 { 21 float: left; 22 writing-mode: vertical-lr; 23 } 24 </style> 25 26 <h3><img class="vrl" src="support/does-not-exist.png" alt="Test passes if this text is rotated 90°"></h3> 27 28 <h3><img class="vlr" src="support/does-not-exist.png" alt="Test passes if this text is rotated 90°"></h3> 29 30 <h3 class="vrl"><img src="support/does-not-exist.png" alt="Test passes if this text is rotated 90°"></h3> 31 32 <h3 class="vlr"><img src="support/does-not-exist.png" alt="Test passes if this text is rotated 90°"></h3>