• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/

Lines Matching +defs:function +defs:document

129         ASSERT(ownerElement->document().frame());
130 ownerElement->document().frame()->tree().appendChild(coreFrame.release());
232 FramePolicyFunction function = WTF::move(m_policyFunction);
242 function(action);
299 Document* document = m_coreFrame->document();
300 if (!document)
302 TextResourceDecoder* decoder = document->decoder();
334 Document* document = m_coreFrame->document();
335 if (!document)
338 RefPtr<Element> documentElement = document->documentElement();
342 RefPtr<Range> range = document->createRange();
377 Document* document = m_coreFrame->document();
378 if (!document)
380 return document->isFrameSet();
428 if (!m_coreFrame->document()->documentElement())
431 return m_coreFrame->document()->documentElement()->innerText();
439 return WebFrame::fromCoreFrame(*m_coreFrame->ownerElement()->document().frame());
476 return m_coreFrame->document()->domWindow()->pendingUnloadEventListeners();
484 return m_coreFrame->document()->securityOrigin()->canDisplay(url);
499 if (!m_coreFrame->document()->isPluginDocument())
502 PluginDocument* pluginDocument = static_cast<PluginDocument*>(m_coreFrame->document());
611 Document* document = m_coreFrame->document();
612 if (!document)
615 for (Node* node = document->documentElement(); node; node = NodeTraversal::next(node)) {
629 Document* document = m_coreFrame->document();
630 if (!document)
633 for (Node* node = document->documentElement(); node; node = NodeTraversal::next(node)) {
768 RefPtr<LegacyWebArchive> archive = LegacyWebArchive::create(coreFrame()->document(), [this, callback, context](Frame& frame) -> bool {