Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / international / unicode-bidi-plaintext-in-textarea.html
blob3196e6a869c3dfc8848b80f504f821f83004a423
1 <!DOCTYPE html>
2 <html><head>
3 <title>unicode-bidi:plaintext</title>
4 <style>
5 .plaintext {
6 unicode-bidi:-webkit-plaintext;
7 unicode-bidi:-moz-plaintext;
8 unicode-bidi:plaintext;
10 </style>
11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12 </head><body>
13 <div>
14 In all four cases below,
15 the exclamation mark should be on the left side of the first line
16 and on the right side of the second line.
17 <div>
18 <textarea rows=4 cols=50 dir=auto>
19 שלום!
20 hello!
21 </textarea><br>
23 <textarea rows=4 cols=50 class="plaintext">
24 שלום!
25 hello!
26 </textarea><br>
28 <textarea rows=4 cols=50 dir=ltr class="plaintext">
29 שלום!
30 hello!
31 </textarea><br>
33 <textarea rows=4 cols=50 dir=rtl class="plaintext">
34 שלום!
35 hello!
36 </textarea>
37 </body></html>