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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/deleting/delete-character-003-expected.txt

Issue 2680943004: Make FrameSelection to hold non-canonicalized positions (Closed)
Patch Set: 2014-02-14T23:34:22 Update TestExpectation to include extend-{0,2,4}0.html and selectAllChildren.html Created 3 years, 10 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
OLDNEW
1 a|<br> 1 a|<br>
2 PASS sample.innerHTML is "<br>" 2 PASS sample.innerHTML is "<br>"
3 PASS selection.type is "Caret" 3 PASS selection.type is "Caret"
4 PASS selection.focusNode is sample 4 PASS selection.focusNode is sample
5 PASS selection.focusOffset is 0 5 PASS selection.focusOffset is 0
6 6
7 a<br>|<br> 7 a<br>|<br>
8 PASS sample.innerHTML is "a<br>" 8 PASS sample.innerHTML is "a<br>"
9 PASS selection.type is "Caret" 9 PASS selection.type is "Caret"
10 PASS selection.focusNode is sample.firstChild 10 PASS selection.focusNode is sample.firstChild
(...skipping 25 matching lines...) Expand all
36 36
37 a<br>|b 37 a<br>|b
38 PASS sample.innerHTML is "ab" 38 PASS sample.innerHTML is "ab"
39 PASS selection.type is "Caret" 39 PASS selection.type is "Caret"
40 PASS selection.focusNode is sample.firstChild 40 PASS selection.focusNode is sample.firstChild
41 PASS selection.focusOffset is 1 41 PASS selection.focusOffset is 1
42 42
43 a<br><br>|b 43 a<br><br>|b
44 PASS sample.innerHTML is "a<br>b" 44 PASS sample.innerHTML is "a<br>b"
45 PASS selection.type is "Caret" 45 PASS selection.type is "Caret"
46 PASS selection.focusNode is sample 46 PASS selection.focusNode is sample.lastChild
47 PASS selection.focusOffset is 2 47 PASS selection.focusOffset is 0
48 48
49 a<br><br><br>|b 49 a<br><br><br>|b
50 PASS sample.innerHTML is "a<br><br>b" 50 PASS sample.innerHTML is "a<br><br>b"
51 PASS selection.type is "Caret" 51 PASS selection.type is "Caret"
52 PASS selection.focusNode is sample 52 PASS selection.focusNode is sample.lastChild
53 PASS selection.focusOffset is 3 53 PASS selection.focusOffset is 0
54 54
55 a<br>b| 55 a<br>b|
56 PASS sample.innerHTML is "a<br><br>" 56 PASS sample.innerHTML is "a<br><br>"
57 PASS selection.type is "Caret" 57 PASS selection.type is "Caret"
58 PASS selection.focusNode is sample 58 PASS selection.focusNode is sample
59 PASS selection.focusOffset is 2 59 PASS selection.focusOffset is 2
60 60
61 a<br><br>b| 61 a<br><br>b|
62 PASS sample.innerHTML is "a<br><br><br>" 62 PASS sample.innerHTML is "a<br><br><br>"
63 PASS selection.type is "Caret" 63 PASS selection.type is "Caret"
64 PASS selection.focusNode is sample 64 PASS selection.focusNode is sample
65 PASS selection.focusOffset is 3 65 PASS selection.focusOffset is 3
66 66
67 a<br><br><br>b| 67 a<br><br><br>b|
68 PASS sample.innerHTML is "a<br><br><br><br>" 68 PASS sample.innerHTML is "a<br><br><br><br>"
69 PASS selection.type is "Caret" 69 PASS selection.type is "Caret"
70 PASS selection.focusNode is sample 70 PASS selection.focusNode is sample
71 PASS selection.focusOffset is 4 71 PASS selection.focusOffset is 4
72 72
73 PASS successfullyParsed is true 73 PASS successfullyParsed is true
74 74
75 TEST COMPLETE 75 TEST COMPLETE
76 76
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698