bdi-element-invalid-dir.html (669B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org"> 5 <link rel="help" href="https://html.spec.whatwg.org/multipage/dom.html#the-directionality"> 6 <link rel="match" href="bdi-element-invalid-dir-ref.html"> 7 <style> 8 div { position: relative; width: 100px; height: 100px; background: red; } 9 bdi { width: 100px; height: 100px; display: block; } 10 span { display: inline-block; width: 50px; height: 100px; background: green; color: green; } 11 #left { background: green; position: absolute; left: 0px; top: 0px; } 12 </style> 13 </head> 14 <body> 15 <div><bdi dir="foo"><span id="left"></span><span>ת</span></bdi></div> 16 </body> 17 </html>