OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scriptURL
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp
54
KURL
scriptURL
= executionContext()->completeURL(url);
55
if (!
scriptURL
.isValid()) {
61
if (!executionContext()->securityOrigin()->canRequest(
scriptURL
)) {
62
exceptionState.throwSecurityError("Script at '" +
scriptURL
.elidedString() + "' cannot be accessed from origin '" + executionContext()->securityOrigin()->toString() + "'.");
66
if (executionContext()->contentSecurityPolicy() && !executionContext()->contentSecurityPolicy()->allowScriptFromSource(
scriptURL
)) {
67
exceptionState.throwSecurityError("Access to the script at '" +
scriptURL
.elidedString() + "' is denied by the document's Content Security Policy.");
71
return
scriptURL
;
SharedWorker.cpp
78
KURL
scriptURL
= worker->resolveURL(url, exceptionState);
79
if (
scriptURL
.isEmpty())
83
document->page()->sharedWorkerRepositoryClient()->connect(worker.get(), remotePort.release(),
scriptURL
, name, exceptionState);
Worker.cpp
66
KURL
scriptURL
= worker->resolveURL(url, exceptionState);
67
if (
scriptURL
.isEmpty())
74
worker->m_scriptLoader->loadAsynchronously(context,
scriptURL
, DenyCrossOriginRequests, worker.get());
WorkerThread.cpp
105
KURL
scriptURL
= m_startupData->m_scriptURL;
126
script->evaluate(ScriptSourceCode(sourceCode,
scriptURL
));
/external/chromium_org/third_party/WebKit/public/web/
WebEmbeddedWorkerStartData.h
46
WebURL
scriptURL
;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CompilerScriptMapping.js
184
var
scriptURL
= WebInspector.ParsedURL.completeURL(WebInspector.inspectedPageURL, script.sourceURL);
185
if (!
scriptURL
) {
189
var sourceMapURL = WebInspector.ParsedURL.completeURL(
scriptURL
, script.sourceMapURL);
210
WebInspector.SourceMap.load(sourceMapURL,
scriptURL
, sourceMapLoaded.bind(this));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
NavigatorServiceWorker.cpp
118
KURL
scriptURL
= executionContext->completeURL(scriptSrc);
119
if (!documentOrigin->canRequest(
scriptURL
)) {
124
ensureProvider()->registerServiceWorker(patternURL,
scriptURL
, new CallbackPromiseAdapter<ServiceWorker, ServiceWorkerError>(resolver, executionContext));
/external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp
243
KURL
scriptURL
= (!elementDocument.isInDocumentWrite() && m_parserInserted) ? elementDocument.url() : KURL();
244
if (!executePotentiallyCrossOriginScript(ScriptSourceCode(scriptContent(),
scriptURL
, position)))
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp
459
String InspectorDebuggerAgent::
scriptURL
(JavaScriptCallFrame* frame)
475
String topFrameScriptUrl =
scriptURL
(topFrame.get());
536
String
scriptUrl
=
scriptURL
(topFrame.get());
537
if (!
scriptUrl
.isEmpty() && m_cachedSkipStackRegExp->match(
scriptUrl
) != -1) {
[
all
...]
/prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar
Completed in 3689 milliseconds