Home | History | Annotate | Download | only in html

Lines Matching defs:serviceType

142 // FIXME: This function should not deal with url or serviceType!
143 void HTMLObjectElement::parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType)
166 // FIXME: serviceType calculation does not belong in this function.
167 if (serviceType.isEmpty() && equalIgnoringCase(name, "type")) {
168 serviceType = p->value();
169 size_t pos = serviceType.find(";");
171 serviceType = serviceType.left(pos);
181 if (MIMETypeRegistry::isJavaAppletMIMEType(serviceType)) {
207 if (shouldUsePlugin(completedURL, serviceType, false, useFallback))
254 if (MIMETypeRegistry::isJavaAppletMIMEType(serviceType()) && classId().startsWith("java:", false))
283 String serviceType = this->serviceType();
288 parametersForPlugin(paramNames, paramValues, url, serviceType);
300 if (pluginCreationOption == CreateOnlyNonNetscapePlugins && wouldLoadAsNetscapePlugin(url, serviceType)) {
311 bool success = beforeLoadAllowedLoad && hasValidClassId() && requestObject(url, serviceType, paramNames, paramValues);