| Index: third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block-rtl.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block-rtl.html b/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block-rtl.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..40f9d3a2176ef8b0652b6165cf795aa554c728b5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block-rtl.html
|
| @@ -0,0 +1,19 @@
|
| +<!doctype html>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<style>
|
| +body {
|
| + font-size: 48px;
|
| +}
|
| +.rtl {
|
| + direction: rtl;
|
| + unicode-bidi: bidi-override;
|
| +}
|
| +</style>
|
| +<div class="rtl">
|
| + <div class="rtl" style="display:inline-block">x</div>y
|
| +</div>
|
| +<script>
|
| +runAfterLayoutAndPaint(function() {
|
| + document.execCommand("SelectAll", false);
|
| +}, true);
|
| +</script>
|
|
|