Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/international/dir-isolation/dir-isolation-007a.html

Issue 1463473002: Make unicode-bidi:isolate the default for elements with dir attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: leviw review Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>The dir attribute: isolated from immediately following text, opposite dir ection</title>
6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
7 <link rel="help" href='http://www.w3.org/TR/html5/dom.html#requirements-relating -to-the-bidirectional-algorithm'>
8 <link rel='match' href='reference/dir-isolation-007-ref.html'>
9 <meta name='assert' content='Element content with a dir attribute is treated as a neutral character and directionally isolated from following text even with no intervening white space.'>
10 <style type="text/css">
11 .test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; margin-ri ght: 200px; padding: 5px; clear: both; }
12 input { margin: 5px; }
13 </style>
14 </head>
15 <body>
16 <p class="instructions" dir="ltr">Test passes if the two boxes are identical.</p >
17 <!--Notes:
18 Key to entities used below:
19 &#x5d0; ... &#x5d5; - The first six Hebrew letters (strongly RTL).
20 &#x202d; - The LRO (left-to-right-override) formatting character.
21 &#x202c; - The PDF (pop directional formatting) formatting character; closes LRO .
22 The punctuation is moved around in the source to make it easier to do visual com parisons when the test is run.
23 -->
24 <div class="test">
25 <div dir="ltr"><span dir="rtl">&#x5d0;</span>&#x5d1;...</div>
26 <div dir="ltr"><span dir="rtl">a</span>b...</div>
27 <div dir="rtl"><span dir="ltr">a</span>b...</div>
28 <div dir="rtl"><span dir="ltr">&#x5d0;</span>&#x5d1;...</div>
29 </div>
30 <div class="ref">
31 <div dir="ltr">&#x202d;&#x5d0;&#x5d1;...&#x202c;</div>
32 <div dir="ltr">&#x202d;ab...&#x202c;</div>
33 <div dir="rtl">&#x202d;...ba&#x202c;</div>
34 <div dir="rtl">&#x202d;...&#x5d1;&#x5d0;&#x202c;</div>
35 </div>
36 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698