bdo-child.html (632B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>HTML Test: bdo - text directionality formatting control for its children</title> 6 <link rel="author" title="Intel" href="http://www.intel.com/"> 7 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-bdo-element"> 8 <link rel="match" href="bidi-001-ref.html"> 9 <meta name="assert" content="Check if the bdo element represents explicit text directionality formatting control for its children."> 10 </head> 11 <body> 12 <p>Test passes if there is text 'WERBEH'.</p> 13 <bdo dir="rtl"> 14 <span>HEBREW</span> 15 </bdo> 16 </body> 17 </html>