| Index: third_party/WebKit/LayoutTests/fast/text/ellipsis-ltr-text-in-rtl-flow-leading-space.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/text/ellipsis-ltr-text-in-rtl-flow-leading-space.html b/third_party/WebKit/LayoutTests/fast/text/ellipsis-ltr-text-in-rtl-flow-leading-space.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e902bbc5db0105a5f4b0e145bfdfde58df5429d7
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/text/ellipsis-ltr-text-in-rtl-flow-leading-space.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .container {
|
| + width: 6em;
|
| + }
|
| + .container > div {
|
| + overflow: hidden;
|
| + }
|
| + .ellipsis {
|
| + text-overflow: ellipsis;
|
| + direction: rtl;
|
| + }
|
| +</style>
|
| +<p>crbug.com/667128: Ignore leading space when handling ellipsis on ltr text in an rtl flow.</p>
|
| +<p>The ellipsis should not overlap the text.</p>
|
| +<div class="container">
|
| + <div class="ellipsis">
|
| + ButtonWithAReallyLongNameButtonWithAReallyLongName
|
| + </div>
|
| +</div>
|
|
|