OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html lang="en"> | 2 <html lang="en"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"/> | 4 <meta charset="utf-8"/> |
5 <title>direction/unicode-bidi: direction alone and inherited, unicode-bidi norma
l</title> | 5 <title>direction/unicode-bidi: direction alone and inherited, unicode-bidi norma
l</title> |
6 | 6 |
7 <link rel="author" title="Richard Ishida" href='mailto:ishida@w3.org'/> | 7 <link rel="author" title="Richard Ishida" href='mailto:ishida@w3.org'/> |
8 <link rel="help" href='http://www.w3.org/TR/css-writing-modes-3/#text-direction'
/> | 8 <link rel="help" href='http://www.w3.org/TR/css-writing-modes-3/#text-direction'
/> |
9 <link rel="match" href='reference/bidi-embed-011.html'/> | 9 <link rel="match" href='reference/bidi-normal-011.html'/> |
10 <meta name="assert" content='Directionality is not changed by the direction prop
erty on its own, nor by unicode-bidi:normal set on a lower level element.'/> | 10 <meta name="assert" content='Directionality is not changed by the direction prop
erty on its own, nor by unicode-bidi:normal set on a lower level element.'/> |
11 <style type="text/css"> | 11 <style type="text/css"> |
12 .test b { direction: rtl; font-weight: normal; } | 12 .test b { direction: rtl; font-weight: normal; } |
13 .test span { unicode-bidi: normal; } | 13 .test span { unicode-bidi: normal; } |
14 | 14 |
15 /* the following styles are not part of the test */ | 15 /* the following styles are not part of the test */ |
16 .test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; width: 10
em; padding: 5px; clear: both; } | 16 .test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; width: 10
em; padding: 5px; clear: both; } |
17 input { margin: 5px; } | 17 input { margin: 5px; } |
18 @font-face { | 18 @font-face { |
19 font-family: 'ezra_silregular'; | 19 font-family: 'ezra_silregular'; |
(...skipping 20 matching lines...) Expand all Loading... |
40 <div class="test">> <b>a > <span>b > ד</span> > d</b> ></di
v> | 40 <div class="test">> <b>a > <span>b > ד</span> > d</b> ></di
v> |
41 | 41 |
42 | 42 |
43 <div class="ref" dir="ltr">‭> a > b > ד > d >‬
;</div> | 43 <div class="ref" dir="ltr">‭> a > b > ד > d >‬
;</div> |
44 | 44 |
45 | 45 |
46 | 46 |
47 | 47 |
48 | 48 |
49 | 49 |
50 </body></html> | 50 </body></html> |
OLD | NEW |