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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/selection/text-selection-with-composition.html

Issue 2896273003: Show selection highlight even if we have a composition underline (Closed)
Patch Set: Add test case baselines Created 3 years, 6 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/paint/selection/text-selection-with-composition-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
(Empty)
1 <!DOCTYPE html>
chrishtr 2017/06/01 00:47:07 You can use testharnness to avoid the -expected.tx
2 <html>
3 <head>
4 <script>
5 function runTest() {
6 if (!window.testRunner)
7 return;
8
9 var input = document.getElementById('test');
10 input.focus();
11 textInputController.setComposition('Hello, world!');
12 input.selectionStart = 0;
13 input.selectionEnd = 13;
14 }
15 </script>
16 </head>
17 <body onload="runTest()">
18 <input id="test" />
19 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/paint/selection/text-selection-with-composition-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698