Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / editor / text-editor-ctrl-d-2-expected.txt
blob10afcc720ee3fcb124e50bd5595d19f10a18001b
1 This test verifies Ctrl-D functionality, which selects next occurrence of word.
3 function wordData() {
4     return {
5         original: $(".entry.original > .input").text(),
6         translation: $(".entry.translation > .input").text(),
7         tags: $(".active-tags > .tagcloud > .tag").toArray().map(function(value) { return value.textContent; })
8     };
11 function submitWord(url) {
12     var stub = new App.Stub($(".content"));
13     $.post(url, wordData())
14     .done(function() {
15         var callback = $("meta[data-callback]").attr("data-callback");
16         if (callback) {
17             window.location = callback;
18         } else {
19             stub.success();
20             $(".entry.original > .input").text("").focus();
21             $(".entry.translation > .input").text("");
22         }
23     })
24     .fail(function(obj, err, errDescr) {
25         stub.failure("Error: " + errDescr);
26     })
29 Running: testCursorInTheWordStart
30 'function': 1
32 Running: testCursorInTheWordEnd
33 'function': 1
35 Running: testNonWordSelection
36 '$(': 7
38 Running: testNonWordSelection2
39 ' > ': 6
41 Running: testNonWordSelection3
42 'window.location': 1
43 'success': 1
44 'text(': 1
46 Running: testNonWordSelection4
47 'text(': 4
48 'dow.locati': 1
49 'es': 1
51 Running: testTriggerWordSearchInMixedCase
52 'stub = new App.Stub': 1
53 'callback': 5