| Index: third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-locale.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-locale.html b/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-locale.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8ad04423394d6befb59d884e1a3ec710969327bb
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-locale.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +div {
|
| + font-family: 'Courier New';
|
| + -webkit-hyphens: auto;
|
| + hyphens: auto;
|
| +}
|
| +
|
| +span {
|
| + border: thin solid black;
|
| + display: block;
|
| + width: 8ch;
|
| +}
|
| +</style>
|
| +<script>
|
| +if (window.internals)
|
| + internals.setMockHyphenation('en-us');
|
| +</script>
|
| +<div lang="en-us">
|
| + <span>a hyphenation a</span>
|
| +</div>
|
| +<div lang="ja-jp">
|
| + <span>a hyphenation a</span>
|
| +</div>
|
|
|