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

Side by Side Diff: LayoutTests/editing/selection/select-first-letter.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 <head>
2 <style>
3 p:first-letter {
4 color: red;
5 }
6 </style>
7 </head>
8 <body>
9 <p>All text are selected.</p>
10 <div id="output"></div>
11 </body>
12 <script>
13 var range = document.createRange();
14 range.selectNode(document.querySelector('p'));
15 range.startContainer.focus();
16 var selection = window.getSelection();
17 selection.removeAllRanges();
18 selection.addRange(range);
19 document.getElementById('output').textContent = selection.anchorOffset + ' ' + s election.focusOffset
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698