Index: LayoutTests/fast/text/international/unicode-bidi-plaintext-line-wrap.html |
diff --git a/LayoutTests/fast/text/international/unicode-bidi-plaintext-line-wrap.html b/LayoutTests/fast/text/international/unicode-bidi-plaintext-line-wrap.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6410e95e5044c58c4bc43843a471675eb959d80a |
--- /dev/null |
+++ b/LayoutTests/fast/text/international/unicode-bidi-plaintext-line-wrap.html |
@@ -0,0 +1,37 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <meta charset="utf-8"/> |
+ <link rel="help" href="http://dev.w3.org/csswg/css3-writing-modes/#unicode-bidi0" /> |
+ <style> |
+ body { |
+ font-size:2em; |
+ text-align:left; |
+ } |
+ .test { |
+ border: medium solid gray; |
+ padding: 10px; |
+ width: 400px; |
+ margin: 20px; |
+ } |
+ .plaintext { |
+ unicode-bidi: -webkit-plaintext; |
+ } |
+ </style> |
+ <title>line wraps in unicode-bidi:plaintext do not cause reestimation</title> |
+ </head> |
+ <body> |
+ <div class="test"> |
+ <span class="plaintext">==> ==> ==> ==> ==> ==> ==> ==> ==> <span>ב</span> ==> ==> ==> ==> ==> ==> ==> ==> ==></span> |
+ </div> |
+ <div class="test"> |
+ <div class="plaintext">==> ==> ==> ==> ==> ==> ==> ==> ==> <span>ב</span> ==> ==> ==> ==> ==> ==> ==> ==> ==></div> |
+ </div> |
+ <div class="test"> |
+ <span class="plaintext">==> ==> ==> ==> ==> ==> ==> ==> ==> ב ==> ==> ==> ==> ==> ==> ==> ==> ==></span> |
+ </div> |
+ <div class="test"> |
+ <span class="plaintext">==> ==> ==> ==> ==> ==> ==> ==> ==> <span>A</span> ==> ==> ==> ==> ==> ==> ==> ==> ==></span> |
+ </div> |
+ </body> |
+</html> |