Home
last modified time | relevance | path

Searched refs:protocolIsJavaScript (Results 1 – 20 of 20) sorted by relevance

/external/webkit/WebCore/bindings/js/
DJSHTMLIFrameElementCustom.cpp47 if (protocolIsJavaScript(deprecatedParseURL(srcValue))) { in setSrc()
DJSAttrCustom.cpp50 …if (equalIgnoringCase(imp->name(), "src") && protocolIsJavaScript(deprecatedParseURL(attrValue))) { in setValue()
DJSHTMLFrameElementCustom.cpp43 if (protocolIsJavaScript(deprecatedParseURL(value))) { in allowSettingJavascriptURL()
DJSLocationCustom.cpp152 if (!protocolIsJavaScript(url) || allowsAccessFromFrame(exec, frame)) in navigateIfAllowed()
282 if (!protocolIsJavaScript(frame->loader()->url())) in reload()
DJSElementCustom.cpp56 …ement->hasTagName(frameTag)) && equalIgnoringCase(name, "src") && protocolIsJavaScript(deprecatedP… in allowSettingSrcToJavascriptURL()
DJSDOMWindowCustom.cpp408 if (!protocolIsJavaScript(url) || allowsAccessFrom(exec)) { in setLocation()
531 if (!protocolIsJavaScript(url) || newWindow->allowsAccessFrom(exec)) { in createWindow()
586 …if (!completedURL.isEmpty() && (!protocolIsJavaScript(completedURL) || (targetedWindow && targeted… in open()
/external/webkit/WebCore/bindings/v8/
DV8Utilities.cpp100 if (!protocolIsJavaScript(url) || ScriptController::isSafeScript(frame)) in navigateIfAllowed()
/external/webkit/WebCore/platform/
DKURL.h253 bool protocolIsJavaScript(const String& url);
DKURL.cpp344 if (rel.contains('\\') && !(protocolIsJavaScript(rel) || protocolIs(rel, "data"))) in init()
1556 …sValid() && !protocolIs(rel, "mailto") && !protocolIs(rel, "data") && !protocolIsJavaScript(rel)) { in encodeRelativeString()
1622 bool protocolIsJavaScript(const String& url) in protocolIsJavaScript() function
DKURLGoogle.cpp696 bool protocolIsJavaScript(const String& url) in protocolIsJavaScript() function
/external/webkit/WebCore/html/
DHTMLAnchorElement.cpp276 …t()->page() && !document()->page()->javaScriptURLsAreAllowed() && protocolIsJavaScript(parsedURL))… in parseMappedAttribute()
/external/webkit/WebCore/plugins/
DPluginStream.cpp133 if (protocolIsJavaScript(responseURL)) in startStream()
DPluginView.cpp98 if (!protocolIsJavaScript(url)) in scriptStringIfJavaScriptURL()
/external/webkit/WebCore/bindings/v8/custom/
DV8DOMWindowCustom.cpp526 if (protocolIsJavaScript(url) || ScriptController::isSafeScript(newFrame)) { in createWindow()
683 (!protocolIsJavaScript(completedUrl) || ScriptController::isSafeScript(frame))) { in CALLBACK_FUNC_DECL()
DV8LocationCustom.cpp276 if (!protocolIsJavaScript(frame->loader()->url())) in CALLBACK_FUNC_DECL()
/external/webkit/WebCore/editing/
Dmarkup.cpp195 if (protocolIsJavaScript(strippedURLString)) { in appendQuotedURLAttributeValue()
/external/webkit/WebCore/loader/
DFrameLoader.cpp428 if (protocolIsJavaScript(urlString)) { in requestFrame()
514 if (protocolIsJavaScript(u)) { in submitForm()
737 if (!protocolIsJavaScript(url)) in executeIfJavaScriptURL()
/external/webkit/WebKit/android/jni/
DWebCoreFrameBridge.cpp640 WebCore::protocolIsJavaScript(requestUrl.string()))) in canHandleRequest()
/external/webkit/WebKit/android/nav/
DCacheBuilder.cpp1120 if (!href.isEmpty() && !WebCore::protocolIsJavaScript(href.string())) in BuildFrame()
/external/webkit/WebCore/
DChangeLog-2009-06-168000 (WebCore::PluginStream::startStream): Switch to using protocolIsJavaScript.
8098 (WebCore::protocolIsJavaScript):
8137 Whenever checking for javascript urls, the new protocolIsJavaScript() should be used
8143 (WebCore::JSAttr::setValue): Use protocolIsJavaScript().
8167 (WebCore::KURL::init): Use protocolIsJavaScript().
8169 Such checks should go through protocolIsJavaScript() instead.
8170 (WebCore::encodeRelativeString): Use protocolIsJavaScript().
8171 (WebCore::protocolIsJavaScript):