[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / js / regexp-char-insensitive-expected.txt
1 This test checks the case-insensitive matching of character literals.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6 PASS /å/i.test('/å/') is true
7 PASS /å/i.test('/Å/') is true
8 PASS /Å/i.test('/å/') is true
9 PASS /Å/i.test('/Å/') is true
10 PASS /å/i.test('P') is false
11 PASS /å/i.test('PASS') is false
12 PASS /Å/i.test('P') is false
13 PASS /Å/i.test('PASS') is false
14 PASS 'PASS'.match(/Å/i) is null
15 PASS 'PASS'.match(/Å/i) is null
16 PASS 'PASå'.replace(/å/ig, 'S') is 'PASS'
17 PASS 'PASå'.replace(/Å/ig, 'S') is 'PASS'
18 PASS 'PASÅ'.replace(/å/ig, 'S') is 'PASS'
19 PASS 'PASÅ'.replace(/Å/ig, 'S') is 'PASS'
20 PASS 'PASS'.replace(/å/ig, '%C3%A5') is 'PASS'
21 PASS 'PASS'.replace(/Å/ig, '%C3%A5') is 'PASS'
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25