HomeSort by relevance Sort by last modified time
    Searched refs:elidedString (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp 62 exceptionState.throwSecurityError("Script at '" + scriptURL.elidedString() + "' cannot be accessed from origin '" + executionContext()->securityOrigin()->toString() + "'.");
67 exceptionState.throwSecurityError("Access to the script at '" + scriptURL.elidedString() + "' is denied by the document's Content Security Policy.");
WorkerGlobalScope.cpp 231 exceptionState.throwDOMException(NetworkError, "The script at '" + url.elidedString() + "' failed to load.");
245 exceptionState.throwDOMException(NetworkError, "The script at '" + it->elidedString() + "' failed to load.");
  /external/chromium_org/third_party/WebKit/Source/core/loader/
MixedContentChecker.cpp 209 frame->document()->url().elidedString().utf8().data(), typeNameFromContext(requestContext), url.elidedString().utf8().data(),
378 message.append("The page at '" + m_frame->document()->url().elidedString() + "' was loaded over HTTPS, but ");
381 message.append("displayed insecure content from '" + target.elidedString() + "': this content should also be loaded over HTTPS.\n");
385 message.append("ran insecure content from '" + target.elidedString() + "': this content should also be loaded over HTTPS.\n");
388 message.append("is submitting data to an insecure location at '" + target.elidedString() + "': this content should also be submitted over HTTPS.\n");
FrameFetchContext.cpp 56 FrameLoader::reportLocalLoadFailed(m_frame, url.elidedString());
FrameLoader.cpp 682 reportLocalLoadFailed(m_frame, url.elidedString());
    [all...]
DocumentLoader.cpp 460 String message = "Refused to display '" + response.url().elidedString() + "' in a frame because it set 'X-Frame-Options' to '" + content + "'.";
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 138 exceptionState.throwSecurityError("A history state object with URL '" + fullURL.elidedString() + "' cannot be created in a document with origin '" + m_frame->document()->securityOrigin()->toString() + "'.");
  /external/chromium_org/third_party/WebKit/Source/web/
SharedWorkerRepositoryClientImpl.cpp 122 exceptionState.throwDOMException(URLMismatchError, "The location of the SharedWorker named '" + name + "' does not exactly match the provided URL ('" + url.elidedString() + "').");
  /external/chromium_org/third_party/WebKit/Source/modules/beacon/
NavigatorBeacon.cpp 57 exceptionState.throwSecurityError("Refused to send beacon to '" + url.elidedString() + "' because it violates the document's Content Security Policy.");
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.h 114 String elidedString() const;
KURL.cpp 171 String KURL::elidedString() const
  /external/chromium_org/third_party/WebKit/Source/core/page/
CreateWindow.cpp 64 openerFrame.document()->addConsoleMessage(ConsoleMessage::create(SecurityMessageSource, ErrorMessageLevel, "Blocked opening '" + request.resourceRequest().url().elidedString() + "' in a new window because the request was made in a sandboxed frame whose 'allow-popups' permission is not set."));
EventSource.cpp 96 exceptionState.throwSecurityError("Refused to connect to '" + fullURL.elidedString() + "' because it violates the document's Content Security Policy.");
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp 660 WTF_LOG(ResourceLoading, "ResourceFetcher::requestResource '%s', charset '%s', priority=%d, forPreload=%u, type=%s", url.elidedString().latin1().data(), request.charset().latin1().data(), request.priority(), request.forPreload(), ResourceTypeName(type));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp 323 contextDocument->addConsoleMessage(ConsoleMessage::create(SecurityMessageSource, ErrorMessageLevel, "Refused to execute script from '" + resource->url().elidedString() + "' because its MIME type ('" + resource->mimeType() + "') is not executable, and strict MIME type checking is enabled."));
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPDirectiveList.cpp 221 reportViolation(directive->text(), effectiveDirective, prefix + url.elidedString() + "' because it violates the following Content Security Policy directive: \"" + directive->text() + "\"." + suffix + "\n", url);
230 reportViolationWithFrame(directive->text(), "frame-ancestors", "Refused to display '" + url.elidedString() + "' in a frame because an ancestor violates the following Content Security Policy directive: \"" + directive->text() + "\".", url, frame);
279 checkMediaTypeAndReportViolation(m_pluginTypes.get(), type, typeAttribute, "Refused to load '" + url.elidedString() + "' (MIME type '" + typeAttribute + "') because it violates the following Content Security Policy Directive: ") :
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp 549 WTF_LOG(Network, "XMLHttpRequest %p open('%s', '%s', %d)", this, method.utf8().data(), url.elidedString().utf8().data(), async);
571 exceptionState.throwSecurityError("Refused to connect to '" + url.elidedString() + "' because it violates the document's Content Security Policy.");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 96 String urlString = url.isNull() ? "''" : url.elidedString();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.cpp 194 const String message = "WebSocket connection to '" + m_handshake->url().elidedString() + "' failed: " + reason;
272 const String message = "WebSocket connection to '" + m_handshake->url().elidedString() + "' failed: Connection closed before receiving a handshake response";
    [all...]
DOMWebSocket.cpp 316 exceptionState.throwSecurityError("Refused to connect to '" + m_url.elidedString() + "' because it violates the document's Content Security Policy.");
NewWebSocketChannelImpl.cpp 246 const String message = "WebSocket connection to '" + m_url.elidedString() + "' failed: " + reason;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptController.cpp 512 m_frame->document()->addConsoleMessage(ConsoleMessage::create(SecurityMessageSource, ErrorMessageLevel, "Blocked script execution in '" + m_frame->document()->url().elidedString() + "' because the document's frame is sandboxed and the 'allow-scripts' permission is not set."));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.cpp 423 document().addConsoleMessage(ConsoleMessage::create(SecurityMessageSource, ErrorMessageLevel, "Blocked form submission to '" + submission->action().elidedString() + "' because the form's frame is sandboxed and the 'allow-forms' permission is not set."));
HTMLMediaElement.cpp     [all...]

Completed in 2148 milliseconds

1 2