Home | History | Annotate | Download | only in custom

Lines Matching refs:Frame

34 #include "Frame.h"
97 Frame* frame = 0;
98 if (node->hasTagName(HTMLNames::iframeTag) && (frame = static_cast<HTMLIFrameElement*>(node)->contentFrame()))
99 return toV8(frame->domWindow());
132 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
133 htmlDocument->write(writeHelperGetString(args), frame ? frame->document() : NULL);
141 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
142 htmlDocument->writeln(writeHelperGetString(args), frame ? frame->document() : NULL);
152 if (Frame* frame = htmlDocument->frame()) {
153 // Fetch the global object for the frame.
154 v8::Local<v8::Context> context = V8Proxy::context(frame);
171 V8Proxy* proxy = V8Proxy::retrieve(frame);
180 Frame* frame = V8Proxy::retrieveFrameForCallingContext();
181 htmlDocument->open(frame ? frame->document() : NULL);
210 if (V8Proxy* proxy = V8Proxy::retrieve(impl->frame()))