Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: third_party/WebKit/LayoutTests/paint/selection/text-selection-inline-block-rtl.html

Issue 2728263002: Omit wrapped selection for text under inline containing block. (Closed)
Patch Set: Update baselines. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698