Home
last modified time | relevance | path

Searched refs:activeDocument (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/
DHistory.cpp108 Document* activeDocument = toDocument(context); in go() local
109 if (!activeDocument) in go()
112 if (!activeDocument->canNavigate(*m_frame)) in go()
DLocalDOMWindow.cpp928 Document* activeDocument = toDocument(context); in focus() local
929 if (opener() && opener() != this && activeDocument->domWindow() == opener()) in focus()
958 Document* activeDocument = toDocument(context); in close() local
959 if (!activeDocument) in close()
962 if (!activeDocument->canNavigate(*m_frame)) in close()
1632 Document* activeDocument = callingWindow->document(); in setLocation() local
1633 if (!activeDocument) in setLocation()
1637 if (!activeDocument->canNavigate(*m_frame)) in setLocation()
1662 m_frame->navigationScheduler().scheduleLocationChange(activeDocument, in setLocation()
1664 … completedURL, Referrer(activeDocument->outgoingReferrer(), activeDocument->referrerPolicy()), in setLocation()
[all …]
/external/replicaisland/tools/
DExtractPoints.js44 var documentWidth = app.activeDocument.width;
45 var documentHeight = app.activeDocument.height;
55 var pathList = app.activeDocument.pathItems;
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoader.h165 LocalFrame* findFrameForNavigation(const AtomicString& name, Document* activeDocument);
DFrameLoader.cpp1425 LocalFrame* FrameLoader::findFrameForNavigation(const AtomicString& name, Document* activeDocument) in findFrameForNavigation() argument
1427 ASSERT(activeDocument); in findFrameForNavigation()
1429 if (!frame || !frame->isLocalFrame() || !activeDocument->canNavigate(toLocalFrame(*frame))) in findFrameForNavigation()