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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <style>
4 body {
5 font-size: 48px;
6 }
7 .rtl {
8 direction: rtl;
9 unicode-bidi: bidi-override;
10 }
11 </style>
12 <div class="rtl">
13 <div class="rtl" style="display:inline-block">x</div>y
14 </div>
15 <script>
16 runAfterLayoutAndPaint(function() {
17 document.execCommand("SelectAll", false);
18 }, true);
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698