| Index: third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-align.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-align.html b/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-align.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cb38583886f621a239e14a75808b11e69667d27a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-align.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.internals)
|
| + internals.setMockHyphenation('en-us');
|
| +</script>
|
| +<style>
|
| +div {
|
| + width: 15ch;
|
| + border: 2px solid blue;
|
| +}
|
| +.hyphen {
|
| + hyphens: auto;
|
| +}
|
| +</style>
|
| +<div style="text-align: justify">
|
| + <div class="hyphen">This is hyphenation enabled paragraph.</div>
|
| + <div>This is hyphen­ation enabled paragraph.</div>
|
| +</div>
|
| +<div style="text-align: right">
|
| + <div class="hyphen">This is hyphenation enabled paragraph.</div>
|
| + <div>This is hyphen­ation enabled paragraph.</div>
|
| +</div>
|
|
|