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

Side by Side Diff: LayoutTests/editing/undo/undo-combined-delete-boundary-expected.txt

Issue 43143003: Undo of delete/forward-delete of text should not select the deleted text on non-mac platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Function name modified and Tests/Expectations updated Created 7 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
1 mac 1 mac
2 PASS selection.anchorNode.data is "This wo" 2 PASS selection.anchorNode.data is "This wo"
3 PASS selection.anchorOffset is 5 3 PASS selection.anchorOffset is 5
4 PASS selection.focusNode.data is "rd " 4 PASS selection.focusNode.data is "rd "
5 PASS selection.focusOffset is 2 5 PASS selection.focusOffset is 2
6 PASS selection.toString() is "word" 6 PASS selection.toString() is "word"
7 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected." 7 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected only on mac."
8 win 8 win
9 PASS selection.anchorNode.data is "This wo" 9 PASS selection.anchorNode.data is "This wo"
10 PASS selection.anchorOffset is 5 10 PASS selection.anchorOffset is 7
11 PASS selection.focusNode.data is "rd " 11 PASS selection.focusNode.data is "This wo"
12 PASS selection.focusOffset is 2 12 PASS selection.focusOffset is 7
13 PASS selection.toString() is "word" 13 PASS selection.toString() is ""
14 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected." 14 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected only on mac."
15 unix 15 unix
16 PASS selection.anchorNode.data is "This wo" 16 PASS selection.anchorNode.data is "This wo"
17 PASS selection.anchorOffset is 5 17 PASS selection.anchorOffset is 7
18 PASS selection.focusNode.data is "rd " 18 PASS selection.focusNode.data is "This wo"
19 PASS selection.focusOffset is 2 19 PASS selection.focusOffset is 7
20 PASS selection.toString() is "word" 20 PASS selection.toString() is ""
21 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected." 21 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected only on mac."
22 android 22 android
23 PASS selection.anchorNode.data is "This wo" 23 PASS selection.anchorNode.data is "This wo"
24 PASS selection.anchorOffset is 5 24 PASS selection.anchorOffset is 7
25 PASS selection.focusNode.data is "rd " 25 PASS selection.focusNode.data is "This wo"
26 PASS selection.focusOffset is 2 26 PASS selection.focusOffset is 7
27 PASS selection.toString() is "word" 27 PASS selection.toString() is ""
28 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected." 28 PASS $("test").innerHTML is "This wo<b>rd </b>should be selected only on mac."
29 PASS successfullyParsed is true 29 PASS successfullyParsed is true
30 30
31 TEST COMPLETE 31 TEST COMPLETE
32 32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698