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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/text-overflow-ellipsis-vertical-select-expected.html

Issue 2340533002: Don't paint ellipsis selection (Closed)
Patch Set: bug 642460 Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/editing/selection/select-text-overflow-ellipsis-expected.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .testDiv { 5 .testDiv {
6 font-size: 72px; 6 font-size: 72px;
7 -webkit-writing-mode: vertical-rl; 7 -webkit-writing-mode: vertical-rl;
8 } 8 }
9 </style> 9 </style>
10 </head> 10 </head>
11 <body> 11 <body>
12 <!-- This expectation depends on the ellipsis is U+2026. --> 12 <!-- This expectation depends on the ellipsis is U+2026. -->
13 <div id="target" class="testDiv"><span style="font-family: Ahem">B</span>&#x 2026;</div> 13 <div class="testDiv"><span id="target" style="font-family: Ahem">B</span>&#x 2026;</div>
14 <script> 14 <script>
15 var range = document.createRange(); 15 var range = document.createRange();
16 range.selectNode(document.getElementById("target")); 16 range.selectNode(document.getElementById("target"));
17 window.getSelection().addRange(range); 17 window.getSelection().addRange(range);
18 </script> 18 </script>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/editing/selection/select-text-overflow-ellipsis-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698