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: LayoutTests/fast/text/international/unicode-bidi-plaintext-nested-isolate-neutral.html

Issue 23264018: unicode-bidi: plaintext is treating embedded unicode-bidi: isolate incorrectly. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 7 years, 4 months 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>
3 <head>
4 <meta charset="utf-8"/>
5 <style>
6 body {
7 font-size:2em;
8 text-align:left;
9 }
10 .test {
11 border: medium solid gray;
12 padding: 10px;
13 margin: 20px;
14 }
15 .plaintext {
16 unicode-bidi: -webkit-plaintext;
17 }
18 .isolate {
19 unicode-bidi: -webkit-isolate;
20 }
21 </style>
22 </head>
23 <body>
24 <div class="test">
25 <div class="plaintext">
26 <span class="isolate">&#x05D0;-></span>
27 == == ==>
28 <span class="isolate">&#x05D0; == ===</span>
29 <span>Text</span>
30 <span>&#x05D0;</span>
31 </div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698