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

Side by Side Diff: LayoutTests/editing/spelling/spelling-attribute-at-child-expected.txt

Issue 190663014: Verify spellcheck attribute asynchronously (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: apply tony and groby comments Created 6 years, 9 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 Tests if the spellchecker behavior change after the spellcheck attribute changed by the script. 1 Tests if the spellchecker behaves correctly when child has own spellcheck attrib ute.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS childHasSpellingMarker("<div contentEditable>Foo <span spellcheck='false' i d='child'>[]</span> Baz</div>") is false 6 <div contenteditable="">Foo <span spellcheck="false" id="child">[zz ]</span> Baz </div>
7 PASS childHasSpellingMarker("<div contentEditable>Foo <span id='child'>[]</span> Baz</div>") is true 7 PASS internals.hasSpellingMarker(document, 1, 2) became false
8 PASS childHasSpellingMarker("<div contentEditable>Foo <span spellcheck='true' id ='child'>[]</span> Baz</div>") is true 8
9 PASS childHasSpellingMarker("<div spellcheck='false' contentEditable>Foo <span s pellcheck='false' id='child'>[]</span> Baz</div>") is false 9 <div contenteditable="">Foo <span id="child">[zz ]</span> Baz</div>
10 PASS childHasSpellingMarker("<div spellcheck='false' contentEditable>Foo <span i d='child'>[]</span> Baz</div>") is false 10 PASS internals.hasSpellingMarker(document, 1, 2) became true
11 PASS childHasSpellingMarker("<div spellcheck='false' contentEditable>Foo <span s pellcheck='true' id='child'>[]</span> Baz</div>") is true 11
12 PASS childHasSpellingMarker("<div spellcheck='true' contentEditable>Foo <span sp ellcheck='false' id='child'>[]</span> Baz</div>") is false 12 <div contenteditable="">Foo <span spellcheck="true" id="child">[zz ]</span> Baz< /div>
13 PASS childHasSpellingMarker("<div spellcheck='true' contentEditable>Foo <span id ='child'>[]</span> Baz</div>") is true 13 PASS internals.hasSpellingMarker(document, 1, 2) became true
14 PASS childHasSpellingMarker("<div spellcheck='true' contentEditable>Foo <span sp ellcheck='true' id='child'>[]</span> Baz</div>") is true 14
15 <div spellcheck="false" contenteditable="">Foo <span spellcheck="false" id="chil d">[zz ]</span> Baz</div>
16 PASS internals.hasSpellingMarker(document, 1, 2) became false
17
18 <div spellcheck="false" contenteditable="">Foo <span id="child">[zz ]</span> Baz </div>
19 PASS internals.hasSpellingMarker(document, 1, 2) became false
20
21 <div spellcheck="false" contenteditable="">Foo <span spellcheck="true" id="child ">[zz ]</span> Baz</div>
22 PASS internals.hasSpellingMarker(document, 1, 2) became true
23
24 <div spellcheck="true" contenteditable="">Foo <span spellcheck="false" id="child ">[zz ]</span> Baz</div>
25 PASS internals.hasSpellingMarker(document, 1, 2) became false
26
27 <div spellcheck="true" contenteditable="">Foo <span id="child">[zz ]</span> Baz< /div>
28 PASS internals.hasSpellingMarker(document, 1, 2) became true
29
30 <div spellcheck="true" contenteditable="">Foo <span spellcheck="true" id="child" >[zz ]</span> Baz</div>
31 PASS internals.hasSpellingMarker(document, 1, 2) became true
32
15 PASS successfullyParsed is true 33 PASS successfullyParsed is true
16 34
17 TEST COMPLETE 35 TEST COMPLETE
18 36 Foo [zz ] Baz
37 Foo [zz ] Baz
38 Foo [zz ] Baz
39 Foo [zz ] Baz
40 Foo [zz ] Baz
41 Foo [zz ] Baz
42 Foo [zz ] Baz
43 Foo [zz ] Baz
44 Foo [zz ] Baz
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698