Searched defs:frame (Results 51 - 75 of 716) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/fast/encoding/resources/
H A Dparser-tests.js20 var frame = document.getElementById('test'); variable
27 frame.src = 'resources/' + s + '.html';
29 var want = frame.contentWindow.document.getElementById('expected').firstChild.data;
30 var have = frame.contentWindow.document.getElementById('encoding').firstChild.data;
41 pre.appendChild(document.createTextNode(frame.contentWindow.document.getElementsByTagName('pre')[0].firstChild.data));
50 frame.parentNode.removeChild(frame);
/external/webkit/Source/WebCore/bindings/generic/
H A DGenericBinding.h57 // dynamic frame.
58 Frame* frame = state->firstFrame(); local
59 if (!frame)
61 return frame->loader()->completeURL(relativeURL);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMApplicationCacheCustom.cpp49 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame(); local
50 if (!frame)
52 const KURL& url = frame->loader()->completeURL(exec->argument(0).toString(exec));
62 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame(); local
63 if (!frame)
65 const KURL& url = frame->loader()->completeURL(exec->argument(0).toString(exec));
75 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame(); local
[all...]
H A DJSHTMLFrameSetElementCustom.cpp46 Node* frame = frameSet->children()->namedItem(identifierToAtomicString(propertyName)); local
47 return frame && frame->hasTagName(frameTag);
55 Node* frame = element->children()->namedItem(identifierToAtomicString(propertyName)); local
56 if (Document* doc = static_cast<HTMLFrameElement*>(frame)->contentDocument()) {
57 if (JSDOMWindowShell* window = toJSDOMWindowShell(doc->frame(), currentWorld(exec)))
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCachedFrameData.cpp39 ScriptCachedFrameData::ScriptCachedFrameData(Frame* frame) argument
44 ASSERT(V8Proxy::mainWorldContext(frame) == V8Proxy::context(frame));
45 m_context.set(V8Proxy::mainWorldContext(frame));
50 m_domWindow = frame->domWindow();
58 void ScriptCachedFrameData::restore(Frame* frame) argument
67 V8Proxy* proxy = V8Proxy::retrieve(frame);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CustomApplicationInstalledCallback.h41 static PassRefPtr<V8CustomApplicationInstalledCallback> create(v8::Local<v8::Value> value, Frame* frame) argument
44 return adoptRef(new V8CustomApplicationInstalledCallback(value->ToObject(), frame));
/external/webkit/Source/WebCore/css/
H A DStyleMedia.cpp37 StyleMedia::StyleMedia(Frame* frame) argument
38 : m_frame(frame)
/external/webkit/Source/WebCore/dom/
H A DUserTypingGestureIndicator.cpp52 UserTypingGestureIndicator::UserTypingGestureIndicator(Frame* frame) argument
57 focusedNode() = frame->document() ? frame->document()->focusedNode() : 0;
/external/webkit/Source/WebCore/editing/
H A DRemoveFormatCommand.cpp80 Frame* frame = document()->frame(); local
82 if (!frame->selection()->selection().isNonOrphanedCaretOrRange())
87 Node* root = frame->selection()->rootEditableElement();
/external/webkit/Source/WebCore/html/
H A DMediaDocument.h37 static PassRefPtr<MediaDocument> create(Frame* frame, const KURL& url) argument
39 return adoptRef(new MediaDocument(frame, url));
/external/webkit/Source/WebCore/loader/
H A DFrameNetworkingContext.h36 FrameNetworkingContext(Frame* frame) argument
37 : m_frame(frame)
41 Frame* frame() const { return m_frame; } function in class:WebCore::FrameNetworkingContext
H A DSinkDocument.cpp50 SinkDocument::SinkDocument(Frame* frame, const KURL& url) argument
51 : HTMLDocument(frame, url)
/external/webkit/Source/WebCore/page/
H A DHistory.h43 static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); } argument
45 Frame* frame() const;
H A DLocation.h46 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); } argument
48 Frame* frame() const { return m_frame; } function in class:WebCore::Location
H A DPerformance.cpp44 Performance::Performance(Frame* frame) argument
45 : m_frame(frame)
49 Frame* Performance::frame() const function in class:WebCore::Performance
H A DPerformance.h47 static PassRefPtr<Performance> create(Frame* frame) { return adoptRef(new Performance(frame)); } argument
49 Frame* frame() const;
/external/webkit/Source/WebCore/storage/
H A DStorage.h55 Frame* frame() { return m_frame; } function in class:WebCore::Storage
/external/webkit/Source/WebCore/svg/
H A DSVGDocument.h36 static PassRefPtr<SVGDocument> create(Frame* frame, const KURL& url) argument
38 return adoptRef(new SVGDocument(frame, url));
/external/webkit/Source/WebCore/wml/
H A DWMLDocument.h35 static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url) argument
37 return adoptRef(new WMLDocument(frame, url));
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameNetworkingContextQt.cpp31 FrameNetworkingContextQt::FrameNetworkingContextQt(Frame* frame, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager* networkAccessManager) argument
32 : FrameNetworkingContext(frame)
39 PassRefPtr<FrameNetworkingContextQt> FrameNetworkingContextQt::create(Frame* frame, QObject* originatingObject, bool mimeSniffingEnabled, QNetworkAccessManager* networkAccessManager) argument
41 return adoptRef(new FrameNetworkingContextQt(frame, originatingObject, mimeSniffingEnabled, networkAccessManager));
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener) argument
46 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.clientInfo);
H A DWebFormSubmissionListenerProxy.h39 static PassRefPtr<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) argument
41 return adoptRef(new WebFormSubmissionListenerProxy(frame, listenerID));
H A DWebFrameListenerProxy.cpp33 WebFrameListenerProxy::WebFrameListenerProxy(WebFrameProxy* frame, uint64_t listenerID) argument
34 : m_frame(frame)
H A DWebFramePolicyListenerProxy.h37 static PassRefPtr<WebFramePolicyListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) argument
39 return adoptRef(new WebFramePolicyListenerProxy(frame, listenerID));
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/qt/
H A DWebFrameNetworkingContext.cpp29 WebFrameNetworkingContext::WebFrameNetworkingContext(Frame* frame) argument
30 : FrameNetworkingContext(frame)
36 PassRefPtr<WebFrameNetworkingContext> WebFrameNetworkingContext::create(Frame* frame) argument
38 return adoptRef(new WebFrameNetworkingContext(frame));

Completed in 366 milliseconds

1234567891011>>