text-combine-upright-shadow.html (793B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>text-combine-upright: all with text-shadow</title> 6 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> 7 <link rel="stylesheet" href="support/tcy.css"> 8 <link rel="stylesheet" href="/fonts/ahem.css"> 9 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-combine-layout" title="9.1.2. Layout Rules"> 10 <link rel="match" href="text-combine-upright-shadow-ref.html"> 11 <style> 12 div { 13 text-shadow: 4px 10px 0px red; 14 font: 50px/1 Ahem; 15 writing-mode: vertical-rl; 16 } 17 </style> 18 </head> 19 <body> 20 <p>PASS if the text-shadow (red) is placed at the lower right of the text (black).</p> 21 <div>XX<span class="tcy">X</span></div> 22 </body> 23 </html>