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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/text/international/unicode-bidi-plaintext-nested-isolate-neutral.html
diff --git a/LayoutTests/fast/text/international/unicode-bidi-plaintext-nested-isolate-neutral.html b/LayoutTests/fast/text/international/unicode-bidi-plaintext-nested-isolate-neutral.html
new file mode 100644
index 0000000000000000000000000000000000000000..f479607793f4ed557cec78165fb45a9e5c71d782
--- /dev/null
+++ b/LayoutTests/fast/text/international/unicode-bidi-plaintext-nested-isolate-neutral.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <style>
+ body {
+ font-size:2em;
+ text-align:left;
+ }
+ .test {
+ border: medium solid gray;
+ padding: 10px;
+ margin: 20px;
+ }
+ .plaintext {
+ unicode-bidi: -webkit-plaintext;
+ }
+ .isolate {
+ unicode-bidi: -webkit-isolate;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="test">
+ <div class="plaintext">
+ <span class="isolate">&#x05D0;-></span>
+ == == ==>
+ <span class="isolate">&#x05D0; == ===</span>
+ <span>Text</span>
+ <span>&#x05D0;</span>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698