Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/bindings/js/
DJSHTMLFrameElementCustom.cpp46 if (protocolIsJavaScript(stripLeadingAndTrailingHTMLSpaces(value))) { in allowSettingJavascriptURL()
/external/webkit/Source/WebCore/bindings/
DScriptControllerBase.cpp73 if (!protocolIsJavaScript(url)) in executeIfJavaScriptURL()
/external/webkit/Source/WebCore/bindings/generic/
DBindingSecurity.h131 if (protocolIsJavaScript(stripLeadingAndTrailingHTMLSpaces(value))) { in allowSettingFrameSrcToJavascriptUrl()
/external/webkit/Source/WebCore/html/
DHTMLFrameElementBase.cpp68 if (protocolIsJavaScript(completeURL)) { in isURLAllowed()
DHTMLAnchorElement.cpp220 …t()->page() && !document()->page()->javaScriptURLsAreAllowed() && protocolIsJavaScript(parsedURL))… in parseMappedAttribute()
/external/webkit/Source/WebCore/page/
DLocation.cpp261 if (protocolIsJavaScript(m_frame->document()->url())) in reload()
DDOMWindow.cpp1742 if (!protocolIsJavaScript(urlString)) in isInsecureScriptAccess()
/external/webkit/Source/WebCore/platform/
DKURL.h285 bool protocolIsJavaScript(const String& url);
DKURL.cpp364 if (rel.contains('\\') && !(protocolIsJavaScript(rel) || protocolIs(rel, "data"))) in init()
1717 …sValid() && !protocolIs(rel, "mailto") && !protocolIs(rel, "data") && !protocolIsJavaScript(rel)) { in encodeRelativeString()
1825 bool protocolIsJavaScript(const String& url) in protocolIsJavaScript() function
/external/webkit/Source/WebCore/loader/
DNavigationScheduler.cpp275 …return shouldScheduleNavigation() && (protocolIsJavaScript(url) || NavigationDisablerForBeforeUnlo… in shouldScheduleNavigation()
DSubframeLoader.cpp76 if (protocolIsJavaScript(urlString)) { in requestFrame()
DFrameLoader.cpp322 if (protocolIsJavaScript(submission->action())) { in submitForm()
/external/webkit/Source/WebCore/plugins/
DPluginStream.cpp132 if (protocolIsJavaScript(responseURL)) in startStream()
DPluginView.cpp114 if (!protocolIsJavaScript(url)) in scriptStringIfJavaScriptURL()
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginView.cpp659 if (protocolIsJavaScript(request->request().url())) { in performURLRequest()
717 ASSERT(protocolIsJavaScript(request->request().url())); in performJavaScriptURLRequest()
/external/webkit/Source/WebCore/editing/
DMarkupAccumulator.cpp165 if (protocolIsJavaScript(strippedURLString)) { in appendQuotedURLAttributeValue()
/external/webkit/Source/WebCore/dom/
DElement.cpp800 …refAttr.localName()) || name == srcAttr || name == actionAttr) && protocolIsJavaScript(stripLeadin… in isAttributeToRemove()
/external/webkit/Source/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):
DChangeLog-2010-12-06100923 Export protocolIsJavaScript and ScriptValue::getString.