• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/loader/

Lines Matching refs:m_frame

58     : m_frame(frame)
70 m_frame->loader()->stopAllLoaders();
71 begin(m_frame->document()->url(), true, ownerDocument);
76 m_frame->document()->setCompatibilityMode(Document::NoQuirksMode);
81 if (DocumentParser* parser = m_frame->document()->parser()) {
107 if (!m_frame->loader()->stateMachine()->isDisplayingInitialEmptyDocument() && m_frame->loader()->client()->shouldAlwaysUsePluginDocument(m_mimeType))
108 return PluginDocument::create(m_frame, url);
109 if (!m_frame->loader()->client()->hasHTMLView())
110 return PlaceholderDocument::create(m_frame, url);
111 return DOMImplementation::createDocument(m_mimeType, m_frame, url, m_frame->inViewSourceMode());
128 document = SinkDocument::create(m_frame, url);
132 bool shouldReuseDefaultView = m_frame->loader()->stateMachine()->isDisplayingInitialEmptyDocument() && m_frame->document()->isSecureTransitionTo(url);
134 document->takeDOMWindowFrom(m_frame->document());
138 m_frame->loader()->clear(document.get(), !shouldReuseDefaultView, !shouldReuseDefaultView);
142 m_frame->script()->updatePlatformScriptObjects();
144 m_frame->loader()->setOutgoingReferrer(url);
145 m_frame->setDocument(document);
154 m_frame->loader()->didBeginDocument(dispatch);
163 if (m_frame->view() && m_frame->loader()->client()->hasHTMLView())
164 m_frame->view()->setContentsSize(IntSize());
172 if (Settings* settings = m_frame->settings()) {
176 Frame* parentFrame = m_frame->tree()->parent();
186 if (canReferToParentFrameEncoding(m_frame, parentFrame))
190 Frame* parentFrame = m_frame->tree()->parent();
192 if (canReferToParentFrameEncoding(m_frame, parentFrame))
198 m_frame->document()->setDecoder(m_decoder.get());
210 m_frame->document()->setVisuallyOrdered();
211 m_frame->document()->recalcStyle(Node::Force);
230 ASSERT(m_frame->page());
231 ASSERT(m_frame->document());
240 RefPtr<Frame> protector(m_frame);