Lines Matching full:frame
110 // This is the topmost frame that is loading, during a given load, or nil when no load is
111 // in progress. Usually this is the same as the main frame, but not always. In the case
113 // that child frame is the "topmost frame that is loading".
299 NSRect windowRect = NSOffsetRect(rect, -10000, [[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
313 // dynamic scrollbars properly. Without it, every frame will always have scrollbars.
631 // <http://webkit.org/b/31200> In order to prevent extra frame load delegate logging being generated if the first test to use SSL
632 // is set to log frame load delegate calls we ignore SSL certificate errors on localhost and 127.0.0.1.
694 [WebCoreStatistics emptyCache]; // Otherwise SVGImages trigger false positives for Frame/Node counts
723 printf(" (in frame \"%s\")", [target UTF8String]);
741 printf("frame '%s' ", [[f name] UTF8String]);
753 static NSString *dumpFramesAsText(WebFrame *frame)
755 DOMDocument *document = [frame DOMDocument];
763 // Add header for all but the main frame.
764 if ([frame parentFrame])
765 result = [NSMutableString stringWithFormat:@"\n--------\nFrame: '%@'\n--------\n", [frame name]];
770 NSArray *kids = [frame childFrames];
780 static NSData *dumpFrameAsPDF(WebFrame *frame)
782 if (!frame)
801 NSPrintOperation *printOperation = [NSPrintOperation printOperationWithView:[frame frameView] printInfo:printInfo];
1300 NSRectFillUsingOperation([webView frame], NSCompositeSourceOver);