Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block.html b/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..867d3be61624e34373296dc9d32754efbcc8692f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block.html |
| @@ -0,0 +1,13 @@ |
| +<!doctype html> |
| +<script src="../../resources/run-after-layout-and-paint.js"></script> |
| +<style> |
| +body { |
| + font-size: 48px; |
| +} |
| +</style> |
| +<div style="display:inline-block">x</div>y |
|
wkorman
2017/03/06 21:46:50
This new test (and the -rtl variant) show over-pai
|
| +<script> |
| +runAfterLayoutAndPaint(function() { |
| + document.execCommand("SelectAll", false); |
| +}, true); |
| +</script> |