Lines Matching refs:frameRef

44 bool WKBundleFrameIsMainFrame(WKBundleFrameRef frameRef)
46 return toImpl(frameRef)->isMainFrame();
49 WKURLRef WKBundleFrameCopyURL(WKBundleFrameRef frameRef)
51 return toCopiedURLAPI(toImpl(frameRef)->url());
54 WKURLRef WKBundleFrameCopyProvisionalURL(WKBundleFrameRef frameRef)
56 return toCopiedURLAPI(toImpl(frameRef)->provisionalURL());
59 WKFrameLoadState WKBundleFrameGetFrameLoadState(WKBundleFrameRef frameRef)
61 Frame* coreFrame = toImpl(frameRef)->coreFrame();
82 WKArrayRef WKBundleFrameCopyChildFrames(WKBundleFrameRef frameRef)
84 return toAPI(toImpl(frameRef)->childFrames().releaseRef());
87 unsigned WKBundleFrameGetNumberOfActiveAnimations(WKBundleFrameRef frameRef)
89 return toImpl(frameRef)->numberOfActiveAnimations();
92 bool WKBundleFramePauseAnimationOnElementWithId(WKBundleFrameRef frameRef, WKStringRef name, WKStringRef elementID, double time)
94 return toImpl(frameRef)->pauseAnimationOnElementWithId(toImpl(name)->string(), toImpl(elementID)->string(), time);
97 void WKBundleFrameSuspendAnimations(WKBundleFrameRef frameRef)
99 toImpl(frameRef)->suspendAnimations();
102 void WKBundleFrameResumeAnimations(WKBundleFrameRef frameRef)
104 toImpl(frameRef)->resumeAnimations();
107 JSGlobalContextRef WKBundleFrameGetJavaScriptContext(WKBundleFrameRef frameRef)
109 return toImpl(frameRef)->jsContext();
117 JSGlobalContextRef WKBundleFrameGetJavaScriptContextForWorld(WKBundleFrameRef frameRef, WKBundleScriptWorldRef worldRef)
119 return toImpl(frameRef)->jsContextForWorld(toImpl(worldRef));
122 JSValueRef WKBundleFrameGetJavaScriptWrapperForNodeForWorld(WKBundleFrameRef frameRef, WKBundleNodeHandleRef nodeHandleRef, WKBundleScriptWorldRef worldRef)
124 return toImpl(frameRef)->jsWrapperForWorld(toImpl(nodeHandleRef), toImpl(worldRef));
127 JSValueRef WKBundleFrameGetJavaScriptWrapperForRangeForWorld(WKBundleFrameRef frameRef, WKBundleRangeHandleRef rangeHandleRef, WKBundleScriptWorldRef worldRef)
129 return toImpl(frameRef)->jsWrapperForWorld(toImpl(rangeHandleRef), toImpl(worldRef));
132 WKStringRef WKBundleFrameCopyName(WKBundleFrameRef frameRef)
134 return toCopiedAPI(toImpl(frameRef)->name());
137 JSValueRef WKBundleFrameGetComputedStyleIncludingVisitedInfo(WKBundleFrameRef frameRef, JSObjectRef element)
139 return toImpl(frameRef)->computedStyleIncludingVisitedInfo(element);
142 WKStringRef WKBundleFrameCopyCounterValue(WKBundleFrameRef frameRef, JSObjectRef element)
144 return toCopiedAPI(toImpl(frameRef)->counterValue(element));
147 WKStringRef WKBundleFrameCopyMarkerText(WKBundleFrameRef frameRef, JSObjectRef element)
149 return toCopiedAPI(toImpl(frameRef)->markerText(element));
152 WKStringRef WKBundleFrameCopyInnerText(WKBundleFrameRef frameRef)
154 return toCopiedAPI(toImpl(frameRef)->innerText());
157 unsigned WKBundleFrameGetPendingUnloadCount(WKBundleFrameRef frameRef)
159 return toImpl(frameRef)->pendingUnloadCount();
162 WKBundlePageRef WKBundleFrameGetPage(WKBundleFrameRef frameRef)
164 return toAPI(toImpl(frameRef)->page());
167 void WKBundleFrameClearOpener(WKBundleFrameRef frameRef)
169 Frame* coreFrame = toImpl(frameRef)->coreFrame();
174 WKStringRef WKBundleFrameCopyLayerTreeAsText(WKBundleFrameRef frameRef)
176 return toCopiedAPI(toImpl(frameRef)->layerTreeAsText());
179 bool WKBundleFrameAllowsFollowingLink(WKBundleFrameRef frameRef, WKURLRef urlRef)
181 return toImpl(frameRef)->allowsFollowingLink(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string()));
184 WKRect WKBundleFrameGetContentBounds(WKBundleFrameRef frameRef)
186 return toAPI(toImpl(frameRef)->contentBounds());
189 WKRect WKBundleFrameGetVisibleContentBounds(WKBundleFrameRef frameRef)
191 return toAPI(toImpl(frameRef)->visibleContentBounds());
194 WKRect WKBundleFrameGetVisibleContentBoundsExcludingScrollbars(WKBundleFrameRef frameRef)
196 return toAPI(toImpl(frameRef)->visibleContentBoundsExcludingScrollbars());
199 WKSize WKBundleFrameGetScrollOffset(WKBundleFrameRef frameRef)
201 return toAPI(toImpl(frameRef)->scrollOffset());
204 bool WKBundleFrameHasHorizontalScrollbar(WKBundleFrameRef frameRef)
206 return toImpl(frameRef)->hasHorizontalScrollbar();
209 bool WKBundleFrameHasVerticalScrollbar(WKBundleFrameRef frameRef)
211 return toImpl(frameRef)->hasVerticalScrollbar();
214 bool WKBundleFrameGetDocumentBackgroundColor(WKBundleFrameRef frameRef, double* red, double* green, double* blue, double* alpha)
216 return toImpl(frameRef)->getDocumentBackgroundColor(red, green, blue, alpha);
219 WKStringRef WKBundleFrameCopySuggestedFilenameForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef)
221 return toCopiedAPI(toImpl(frameRef)->suggestedFilenameForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));
224 WKStringRef WKBundleFrameCopyMIMETypeForResourceWithURL(WKBundleFrameRef frameRef, WKURLRef urlRef)
226 return toCopiedAPI(toImpl(frameRef)->mimeTypeForResourceWithURL(WebCore::KURL(WebCore::KURL(), toImpl(urlRef)->string())));