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

Side by Side Diff: third_party/WebKit/ManualTests/caret-in-columns-flipped.html

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 years, 1 month 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 <p>
2 (Read from bottom to top)
3 </p>
4 <div id="target" style="
5 margin: 100px;
6 -webkit-columns: 3;
7 width: 300px;
8 height: 100px;
9 -webkit-user-modify: read-write;
10 -webkit-writing-mode: horizontal-bt;
11 outline: none;
12 ">
13 <br>
14 <br>
15 <br>
16 <br>
17 <br>
18 <br>
19 The blinking insertion point should be here &rarr;
20 </div>
21 <script>
22 var target = document.getElementById("target");
23 target.focus();
24 getSelection().modify("move", "forward", "documentboundary");
25 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698