Home
last modified time | relevance | path

Searched refs:mailMsg (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/testing/resources/javascript/
Dapp_methods.in68 expect("app.mailMsg(true)", undefined);
69 expect("app.mailMsg(false, 'user@example.com')", undefined);
70 expect("app.mailMsg(false, 'user@example.com', 'cc@example.com', " +
72 expect("app.mailMsg({'bUI': true})", undefined);
73 expect("app.mailMsg({'bUI': false, 'cTo': 'user@example.com'})", undefined);
74 expect("app.mailMsg({'bUI': false, 'cTo': 'user@example.com', " +
77 expectError("app.mailMsg()");
78 expectError("app.mailMsg(false)");
79 expectError("app.mailMsg({'color': 'red', 'size': 42})");
Dapp_methods_expected.txt42 Alert: PASS: app.mailMsg(true) = undefined
44 Alert: PASS: app.mailMsg(false, 'user@example.com') = undefined
46 Alert: PASS: app.mailMsg(false, 'user@example.com', 'cc@example.com', 'bcc@example.com', 'subject',…
48 Alert: PASS: app.mailMsg({'bUI': true}) = undefined
50 Alert: PASS: app.mailMsg({'bUI': false, 'cTo': 'user@example.com'}) = undefined
52 Alert: PASS: app.mailMsg({'bUI': false, 'cTo': 'user@example.com', 'cCc': 'cc@example.com', 'cBcc':…
53 Alert: PASS: app.mailMsg() threw app.mailMsg: Incorrect number of parameters passed to function.
54 Alert: PASS: app.mailMsg(false) threw app.mailMsg: Incorrect number of parameters passed to functio…
55 Alert: PASS: app.mailMsg({'color': 'red', 'size': 42}) threw app.mailMsg: Incorrect number of param…
/external/pdfium/fxjs/
Dcjs_app.h57 JS_STATIC_METHOD(mailMsg, CJS_App)
134 CJS_Result mailMsg(CJS_Runtime* pRuntime,
Dcjs_app.cpp421 CJS_Result CJS_App::mailMsg(CJS_Runtime* pRuntime, in mailMsg() function in CJS_App