Home
last modified time | relevance | path

Searched refs:addIcon (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/testing/resources/javascript/
Ddocument_methods_expected.txt75 Alert: PASS: typeof this.addIcon = function
76 Alert: PASS: this.addIcon() threw Document.addIcon: Incorrect number of parameters passed to functi…
77 Alert: PASS: this.addIcon(1) threw Document.addIcon: Incorrect number of parameters passed to funct…
78 Alert: PASS: this.addIcon(1, 2, 3) threw Document.addIcon: Incorrect number of parameters passed to…
79 Alert: PASS: this.addIcon("myicon", 3) threw Document.addIcon: Incorrect parameter type.
80 Alert: PASS: this.addIcon("myicon", undefined) threw Document.addIcon: Incorrect parameter type.
Ddocument_methods.in98 expect('typeof this.addIcon', 'function');
101 expectError('this.addIcon()');
102 expectError('this.addIcon(1)');
103 expectError('this.addIcon(1, 2, 3)');
106 expectError('this.addIcon("myicon", 3)');
107 expectError('this.addIcon("myicon", undefined)');
Dicons.in17 doc.addIcon("icon1", icon);
18 doc.addIcon("icon2", icon);
/external/pdfium/testing/resources/
Dbug_634716.in90 doc.addIcon(str + "-" + str + str + str + str + str, doc.icons);
/external/pdfium/fxjs/
Dcjs_document.h74 JS_STATIC_METHOD(addIcon, CJS_Document)
224 CJS_Result addIcon(CJS_Runtime* pRuntime,
Dcjs_document.cpp1100 CJS_Result CJS_Document::addIcon( in addIcon() function in CJS_Document