Add ewk_view_fullscreen_exit to exit fullscreen mode
[framework/web/webkit-efl.git] / LayoutTests / inspector / filtered-item-selection-dialog-filtering-expected.txt
1 Check to see that FilteredItemSelectionDialog uses proper regex to filter results.
2
3 {
4     title : "Empty query matches everything"
5     query : ""
6     input : [
7         "a"
8         "bc"
9     ]
10     output : [
11         "a"
12         "bc"
13     ]
14 }
15 {
16     title : "Case sensitive matching"
17     query : "aB"
18     input : [
19         "abc"
20         "acB"
21     ]
22     output : [
23         "acB"
24     ]
25 }
26 {
27     title : "Case insensitive matching"
28     query : "ab"
29     input : [
30         "abc"
31         "bac"
32         "a_B"
33     ]
34     output : [
35         "abc"
36         "a_B"
37     ]
38 }
39 {
40     title : "Spaces in query"
41     query : "d v "
42     input : [
43         "div .visible"
44         "div.visible "
45     ]
46     output : [
47         "div .visible"
48     ]
49 }
50 {
51     title : "Duplicate symbols in query"
52     query : "aab"
53     input : [
54         "abab"
55         "abaa"
56         "caab"
57         "baac"
58     ]
59     output : [
60         "abab"
61         "caab"
62     ]
63 }
64 {
65     title : "Dangerous input escaping"
66     query : "^[]{}()\.$*+?|"
67     input : [
68         "^[]{}()\.$*+?|"
69         "0123456789abcdef"
70     ]
71     output : [
72         "^[]{}()\.$*+?|"
73     ]
74 }
75