Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/dom/directionality/bdi-element-invalid-dir.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<link rel="match" href="bdi-element-invalid-dir-ref.html">
<style>
div { position: relative; width: 100px; height: 100px; background: red; }
bdi { width: 100px; height: 100px; display: block; }
span { display: inline-block; width: 50px; height: 100px; background: green; color: green; }
#left { background: green; position: absolute; left: 0px; top: 0px; }
</style>
</head>
<body>
<div><bdi dir="foo"><span id="left"></span><span>ת</span></bdi></div>
</body>
</html>