Home | History | Annotate | Download | only in win

Lines Matching full:frame

74         return (webFrame == mainFrame) ? "main frame" : string();
76 string frameName = (webFrame == mainFrame) ? "main frame" : "frame";
129 /* [in] */ IWebFrame* frame)
132 printf("%s - didStartProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
137 topLoadingFrame = frame;
144 /* [in] */ IWebFrame *frame)
147 printf("%s - didReceiveServerRedirectForProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
155 /* [in] */ IWebFrame *frame)
158 printf("%s - didFailProvisionalLoadWithError\n", descriptionSuitableForTestResult(frame).c_str());
165 /* [in] */ IWebFrame *frame)
168 printf("%s - didCommitLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
182 /* [in] */ IWebFrame *frame)
185 printf("%s - didReceiveTitle: %S\n", descriptionSuitableForTestResult(frame).c_str(), title);
216 void FrameLoadDelegate::locationChangeDone(IWebError*, IWebFrame* frame)
218 if (frame != topLoadingFrame)
239 /* [in] */ IWebFrame* frame)
242 printf("%s - didFinishLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
244 locationChangeDone(0, frame);
251 /* [in] */ IWebFrame* frame)
254 printf("%s - didFailLoadWithError\n", descriptionSuitableForTestResult(frame).c_str());
256 locationChangeDone(error, frame);
265 /* [in] */ IWebFrame *frame)
268 printf("%s - willPerformClientRedirectToURL: %S \n", descriptionSuitableForTestResult(frame).c_str(),
276 /* [in] */ IWebFrame *frame)
279 printf("%s - didCancelClientRedirectForFrame\n", descriptionSuitableForTestResult(frame).c_str());
287 /* [in] */ IWebFrame *frame)
297 HRESULT FrameLoadDelegate::didClearWindowObjectForFrameInScriptWorld(IWebView* webView, IWebFrame* frame, IWebScriptWorld* world)
300 ASSERT_ARG(frame, frame);
302 if (!webView || !frame || !world)
310 didClearWindowObjectForFrameInStandardWorld(frame);
312 didClearWindowObjectForFrameInIsolatedWorld(frame, world);
316 void FrameLoadDelegate::didClearWindowObjectForFrameInIsolatedWorld(IWebFrame* frame, IWebScriptWorld* world)
318 COMPtr<IWebFramePrivate> framePrivate(Query, frame);
334 void FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld(IWebFrame* frame)
336 JSGlobalContextRef context = frame->globalContext();
358 /* [in] */ IWebFrame *frame)
362 descriptionSuitableForTestResult(frame).c_str());
365 HRESULT hr = frame->QueryInterface(&webFramePrivate);
374 descriptionSuitableForTestResult(frame).c_str(), pendingFrameUnloadEvents);
382 /* [in] */ IWebFrame *frame)
386 descriptionSuitableForTestResult(frame).c_str());
393 /* [in] */ IWebFrame *frame)