Index: LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html |
diff --git a/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html b/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d239463f8512969cbcea14874b00fda4295ed7fe |
--- /dev/null |
+++ b/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html |
@@ -0,0 +1,56 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <style> |
+ div { width: 70px; margin-bottom: 20px; border: solid thin black; word-break: keep-all; } |
+ </style> |
+ </head> |
+ <body> |
+ <!-- latin works as it was --> |
+ <div> |
+ MMMMMMMMMMMMMMMMM |
+ </div> |
+ <div> |
+ MMMMMMM 123MMMMMMM |
+ </div> |
+ <div> |
+ MM MMMM MM 123 MMM |
+ </div> |
+ |
+ <!-- disable soft wrap between cjk letters --> |
+ <div> |
+ 漢漢漢漢漢漢漢漢 |
+ </div> |
+ <div> |
+ 가가가가가가가가 |
+ </div> |
+ <div> |
+ ああああああああ |
+ </div> |
+ <div> |
+ 2015年4月17日12時30分4秒 |
+ </div> |
+ |
+ <!-- no break between non-BMP --> |
+ <div> <!-- old italic --> |
+ 𐌇𐌄𐌋𐌋𐌏𐌁𐌋𐌉𐌍𐌊 |
+ </div> |
+ <div> <!-- old turkic --> |
+ 𐰀𐰁𐰀𐰁𐰀𐰁𐰀𐰁𐰀𐰁𐰀𐰁𐰀𐰁𐰀𐰁 |
+ </div> |
+ |
+ <!-- CL breaks after --> |
+ <div> <!--U+FF0C fullwidth comma --> |
+百度一下,<br>你就知道 |
+ </div> |
+ <div> <!-- U+FF0E fullwidth full stop --> |
+などでは省いでもよい.<br>しかし |
+ </div> |
+ <div> <!--U+3002 ideographics full stop --> |
+マイナスになる。<br>来年度は |
+ </div> |
+ <div> <!-- U+3001 ideographics comma --> |
+政府は12日、<br>今年度と |
+ </div> |
+ </body> |
+</html> |