| Index: LayoutTests/fast/text/hyphenate-character-expected.html
|
| diff --git a/LayoutTests/fast/text/hyphenate-character-expected.html b/LayoutTests/fast/text/hyphenate-character-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f47ebce3dbdcbfa17a39d98465d581409b6e55a5
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/text/hyphenate-character-expected.html
|
| @@ -0,0 +1,42 @@
|
| +<style>
|
| + .text-box {
|
| + border: solid;
|
| + padding: 4px;
|
| + width: 110px;
|
| + font-size: 18px;
|
| + text-align: justify;
|
| + }
|
| +
|
| + .hyphenate-character-tilde-dot {
|
| + -webkit-hyphenate-character: "\B7~";
|
| + }
|
| +
|
| + .test {
|
| + float: left;
|
| + margin: 0 4px;
|
| + }
|
| +</style>
|
| +<div class="test">
|
| + <p>The initial value (should be like <tt>auto</tt>)</p>
|
| + <div class="text-box">
|
| + antidisestab-lishment-arianism
|
| + </div>
|
| +</div>
|
| +<div class="test">
|
| + <p>The default (<tt>hyphenate-character: auto</tt>)</p>
|
| + <div class="text-box hyphenate-character-auto">
|
| + antidisestab-lishment-arianism
|
| + </div>
|
| +</div>
|
| +<div class="test">
|
| + <p>Bullet (<tt>hyphenate-character: "\2022"</tt>)</p>
|
| + <div class="text-box hyphenate-character-bullet">
|
| + antidisestab• lishment• arianism
|
| + </div>
|
| +</div>
|
| +<div class="test">
|
| + <p>Middle dot and tilde (<tt>hyphenate-character: "\B7~"</tt>)</p>
|
| + <div class="text-box hyphenate-character-tilde-dot">
|
| + antidisestab·~ lishment·~ arianism
|
| + </div>
|
| +</div>
|
|
|