Index: LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all.html |
diff --git a/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all.html b/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0ec5ff19a2741209122038adba90783675d00eea |
--- /dev/null |
+++ b/LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all.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 --> |
+百度一下,你就知道 |
+ </div> |
+ <div> <!-- U+FF0E fullwidth full stop --> |
+などでは省いでもよい.しかし |
+ </div> |
+ <div> <!--U+3002 ideographics full stop --> |
+マイナスになる。来年度は |
+ </div> |
+ <div> <!-- U+3001 ideographics comma --> |
+政府は12日、今年度と |
+ </div> |
+ </body> |
+</html> |