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

Side by Side Diff: LayoutTests/editing/selection/select-first-letter-expected.html

Issue 20681004: Make first-letter style to work with editing Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-09-20T18:27:32 Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <body>
2 <p><span style="color:red">A</span>ll text are selected.</p>
3 <div id="output">0 22</div>
4 </body>
5 <script>
6 var range = document.createRange();
7 range.selectNodeContents(document.querySelector('p'));
8 range.startContainer.focus();
9 var selection = window.getSelection();
10 selection.removeAllRanges();
11 selection.addRange(range);
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698