HomeSort by relevance Sort by last modified time
    Searched refs:targetDocument (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
BindingSecurity.cpp 44 static bool isDocumentAccessibleFromDOMWindow(Document* targetDocument, LocalDOMWindow* callingWindow)
46 if (!targetDocument)
52 if (callingWindow->document()->securityOrigin()->canAccess(targetDocument->securityOrigin()))
58 static bool canAccessDocument(v8::Isolate* isolate, Document* targetDocument, ExceptionState& exceptionState)
61 if (isDocumentAccessibleFromDOMWindow(targetDocument, callingWindow))
64 if (targetDocument->domWindow())
65 exceptionState.throwSecurityError(targetDocument->domWindow()->sanitizedCrossDomainAccessErrorMessage(callingWindow), targetDocument->domWindow()->crossDomainAccessErrorMessage(callingWindow));
69 static bool canAccessDocument(v8::Isolate* isolate, Document* targetDocument, SecurityReportingOption reportingOption = ReportSecurityError)
72 if (isDocumentAccessibleFromDOMWindow(targetDocument, callingWindow)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
UIUtils.js 71 var targetDocument = event.target.ownerDocument;
75 WebInspector._mouseOutWhileDraggingTargetDocument = targetDocument;
77 targetDocument.addEventListener("mousemove", WebInspector._elementDragMove, true);
78 targetDocument.addEventListener("mouseup", WebInspector._elementDragEnd, true);
79 targetDocument.addEventListener("mouseout", WebInspector._mouseOutWhileDragging, true);
81 targetDocument.body.style.cursor = cursor;
114 var targetDocument = event.target.ownerDocument;
115 targetDocument.removeEventListener("mousemove", WebInspector._elementDragMove, true);
116 targetDocument.removeEventListener("mouseup", WebInspector._elementDragEnd, true);
119 targetDocument.body.style.removeProperty("cursor")
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/
dromaeorunner.js 15 DRT.targetDocument = iframe.contentDocument;

Completed in 3679 milliseconds