Home | History | Annotate | Download | only in win

Lines Matching full:frame

90 // This is the topmost frame that is loading, during a given load, or nil when no load is 
91 // in progress. Usually this is the same as the main frame, but not always. In the case
93 // that child frame is the "topmost frame that is loading".
103 IWebFrame* frame;
333 void dumpFrameScrollPosition(IWebFrame* frame)
335 if (!frame)
339 if (FAILED(frame->QueryInterface(&framePrivate)))
348 if (FAILED(frame->parentFrame(&parent)))
352 if (FAILED(frame->name(&name)))
354 printf("frame '%S' ", name ? name : L"");
362 if (FAILED(frame->childFrames(&enumKids)))
376 static wstring dumpFramesAsText(IWebFrame* frame)
378 if (!frame)
382 if (FAILED(frame->DOMDocument(&document)))
391 // Add header for all but the main frame.
393 if (FAILED(frame->parentFrame(&parent)))
397 if (FAILED(frame->name(&name)))
419 if (FAILED(frame->childFrames(&enumKids)))
505 printf(" (in frame \"%S\")", target);
644 if (SUCCEEDED(frame->dataSource(&dataSource))) {
660 wstring result = dumpFramesAsText(frame);
679 if (FAILED(frame->QueryInterface(&framePrivate)))
694 dumpFrameScrollPosition(frame);
806 if (FAILED(frame->webView(&webView)))
899 if (SUCCEEDED(frame->webView(&webView))) {
939 frame->loadRequest(request.get());
957 frame->stopLoading();
1260 if (FAILED(webView->mainFrame(&frame)))
1300 frame->Release();