Home | History | Annotate | Download | only in rendering

Lines Matching refs:url

80 static bool isURLAllowed(Document* doc, const String& url)
87 KURL completeURL = doc->completeURL(url);
90 if (equalIgnoringFragmentIdentifier(frame->loader()->url(), completeURL)) {
144 String url;
181 url = embed->url();
186 // If there was no URL or type defined in EMBED, try the OBJECT tag.
187 if (url.isEmpty())
188 url = objectElement->url();
195 // Get the URL and type from the params if we don't already have them.
198 while (child && (url.isEmpty() || serviceType.isEmpty() || !embed)) {
202 if (url.isEmpty() && (equalIgnoringCase(name, "src") || equalIgnoringCase(name, "movie") || equalIgnoringCase(name, "code") || equalIgnoringCase(name, "url")))
203 url = p->value();
249 if (!isURLAllowed(document(), url))
262 if (!url.isEmpty())
263 completedURL = frame->loader()->completeURL(url);
269 bool success = objectElement->dispatchBeforeLoadEvent(url) && frame->loader()->requestObject(this, url, objectElement->getAttribute(nameAttr), serviceType, paramNames, paramValues);
276 url = embedElement->url();
279 if (url.isEmpty() && serviceType.isEmpty())
281 if (!isURLAllowed(document(), url))
296 if (!url.isEmpty())
297 completedURL = frame->loader()->completeURL(url);
303 if (embedElement->dispatchBeforeLoadEvent(url))
304 frame->loader()->requestObject(this, url, embedElement->getAttribute(nameAttr), serviceType, paramNames, paramValues);
320 url = mediaElement->initialURL();
321 if (!url.isEmpty()) {
323 paramValues.append(url);
328 if (mediaElement->dispatchBeforeLoadEvent(url))
329 frame->loader()->requestObject(this, url, nullAtom, serviceType, paramNames, paramValues);