diff options
Diffstat (limited to 'testing/web-platform/tests/html/dom/elements/global-attributes/dir_auto-N-EN.html')
-rw-r--r-- | testing/web-platform/tests/html/dom/elements/global-attributes/dir_auto-N-EN.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/dom/elements/global-attributes/dir_auto-N-EN.html b/testing/web-platform/tests/html/dom/elements/global-attributes/dir_auto-N-EN.html new file mode 100644 index 000000000..5d948d345 --- /dev/null +++ b/testing/web-platform/tests/html/dom/elements/global-attributes/dir_auto-N-EN.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>HTML Test: dir=auto, start with N, then EN, then L</title> + <link rel="match" href="dir_auto-N-EN-ref.html" /> + <link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" /> + <link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" /> + <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" /> + <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attribute" /> + <meta name="assert" content=" + When dir='auto', the direction is set according to the first strong character + of the text, ignoring neutrals and numbers. + If there is no strong character, as in this test, the direction defaults to LTR." /> + <style> + input, textarea { + font-size:1em; + } + body { + font-size:2em; + } + .test, .ref { + border: medium solid gray; + width: 400px; + margin: 20px; + } + .comments { + display: none; + } + </style> + </head> + <body> + <div class="instructions"><p>Test passes if the two boxes below look exactly the same.</p></div> + <div class="test"> + <div dir="ltr"> + <p dir="auto">@123!</p> + </div> + <div dir="rtl"> + <p dir="auto">@123!</p> + </div> + </div> + <div class="ref"> + <div dir="ltr"> + <p dir="ltr">@123!</p> + </div> + <div dir="rtl"> + <p dir="ltr">@123!</p> + </div> + </div> + </body> +</html> |