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

Side by Side Diff: LayoutTests/webintents/web-intents-api-expected.txt

Issue 9949021: Merge 113282 - Switch web intents API to be vendor-prefixed (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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 PASS navigator.startActivity is defined. 1 PASS navigator.webkitStartActivity is defined.
2 PASS var intent = new Intent() threw exception TypeError: Not enough arguments. 2 PASS var intent = new WebKitIntent() threw exception TypeError: Not enough argum ents.
3 PASS new Intent('a') threw exception TypeError: Not enough arguments. 3 PASS new WebKitIntent('a') threw exception TypeError: Not enough arguments.
4 PASS new Intent('','','') threw exception Error: SYNTAX_ERR: DOM Exception 12. 4 PASS new WebKitIntent('','','') threw exception Error: SYNTAX_ERR: DOM Exception 12.
5 PASS new Intent('','b','c') threw exception Error: SYNTAX_ERR: DOM Exception 12. 5 PASS new WebKitIntent('','b','c') threw exception Error: SYNTAX_ERR: DOM Excepti on 12.
6 PASS new Intent('','','c') threw exception Error: SYNTAX_ERR: DOM Exception 12. 6 PASS new WebKitIntent('','','c') threw exception Error: SYNTAX_ERR: DOM Exceptio n 12.
7 PASS new Intent('a','','c') threw exception Error: SYNTAX_ERR: DOM Exception 12. 7 PASS new WebKitIntent('a','','c') threw exception Error: SYNTAX_ERR: DOM Excepti on 12.
8 PASS intent1.action is "a" 8 PASS intent1.action is "a"
9 PASS intent1.type is "b" 9 PASS intent1.type is "b"
10 PASS intent1.data is undefined. 10 PASS intent1.data is undefined.
11 PASS intent1.action is "a" 11 PASS intent1.action is "a"
12 PASS intent2.action is "a" 12 PASS intent2.action is "a"
13 PASS intent2.type is "b" 13 PASS intent2.type is "b"
14 PASS intent2.data is "c" 14 PASS intent2.data is "c"
15 PASS intent3.action is "a" 15 PASS intent3.action is "a"
16 PASS intent3.type is "b" 16 PASS intent3.type is "b"
17 PASS intent3.data.c is "d" 17 PASS intent3.data.c is "d"
18 PASS intent4.action is "a" 18 PASS intent4.action is "a"
19 PASS intent4.type is "b" 19 PASS intent4.type is "b"
20 PASS intent4.data instanceof Array is true 20 PASS intent4.data instanceof Array is true
21 PASS intent4.data.length is 2 21 PASS intent4.data.length is 2
22 PASS intent4.data[0] is "c" 22 PASS intent4.data[0] is "c"
23 PASS intent4.data[1] is "d" 23 PASS intent4.data[1] is "d"
24 PASS intent5.data is 4 24 PASS intent5.data is 4
25 PASS intent6.data is 4.5 25 PASS intent6.data is 4.5
26 PASS intent7.data is true 26 PASS intent7.data is true
27 PASS intent8.data is null 27 PASS intent8.data is null
28 PASS intent9.data == '[object Object]' is true 28 PASS intent9.data == '[object Object]' is true
29 PASS navigator.startActivity(intent1) threw exception Error: INVALID_ACCESS_ERR: DOM Exception 15. 29 PASS navigator.webkitStartActivity(intent1) threw exception Error: INVALID_ACCES S_ERR: DOM Exception 15.
30 PASS successfullyParsed is true 30 PASS successfullyParsed is true
31 31
32 TEST COMPLETE 32 TEST COMPLETE
33 33
OLDNEW
« no previous file with comments | « LayoutTests/webintents/web-intents-api.html ('k') | LayoutTests/webintents/web-intents-invoke.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698