Searched defs:iframe (Results 1 - 15 of 15) sorted by relevance

/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dcallback-to-remote-context.js5 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
14 var iframe = document.createElement('iframe'); variable
15 iframe.src = 'resources/callback-to-remote-context-inner.html';
16 document.body.appendChild(iframe);
H A Dcallback-to-remote-context2.js6 iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
16 var iframe = document.createElement('iframe'); variable
17 iframe.src = 'resources/callback-to-remote-context-inner.html';
18 document.body.appendChild(iframe);
H A Dcallback-to-deleted-context.js4 iframe.src = 'resources/callback-to-deleted-context-inner2.html';
15 var iframe = document.createElement('iframe'); variable
16 iframe.src = 'resources/callback-to-deleted-context-inner1.html';
17 document.body.appendChild(iframe);
H A Ddisconnected-frame-permission-denied.js13 iframeGeolocation = iframe.contentWindow.navigator.geolocation;
22 iframe.src = 'data:text/html,This frame should be visible when the test completes';
40 var iframe = document.createElement('iframe'); variable
41 iframe.src = 'resources/disconnected-frame-inner.html';
42 document.body.appendChild(iframe);
H A Ddisconnected-frame.js9 iframeGeolocation = iframe.contentWindow.navigator.geolocation;
10 iframe.src = 'data:text/html,This frame should be visible when the test completes';
26 var iframe = document.createElement('iframe'); variable
27 iframe.src = 'resources/disconnected-frame-inner.html';
28 document.body.appendChild(iframe);
H A Ddisconnected-frame-already.js9 iframeGeolocation = iframe.contentWindow.navigator.geolocation;
10 iframe.src = 'resources/disconnected-frame-already-inner2.html';
30 var iframe = document.createElement('iframe'); variable
31 iframe.src = 'resources/disconnected-frame-already-inner1.html';
32 document.body.appendChild(iframe);
/external/chromium/webkit/glue/
H A Diframe_redirect_unittest.cc26 // Tests that loading a page in an iframe from javascript results in
39 WebFrame* iframe = local
41 ASSERT_TRUE(iframe != NULL);
42 WebDataSource* iframe_ds = iframe->dataSource();
/external/webkit/LayoutTests/storage/domstorage/events/resources/
H A DeventTestHarness.js6 iframe = document.createElement("IFRAME");
7 iframe.src = "about:blank";
8 document.body.appendChild(iframe);
9 iframe.contentWindow.document.body.innerText = "Nothing to see here.";
12 iframe.contentWindow.onstorage = function (e) {
/external/doclava/res/assets/templates/assets/
H A Djquery-history.js10 iframe: null,
12 return msie.iframe.contentWindow.document;
26 var hash = msie.iframe ? msie.getHash() : location.hash;
29 if (msie.iframe) {
44 if (msie.iframe) {
73 msie.iframe = $('<iframe style="display:none" src="javascript:false;"></iframe>').prependTo('body')[0];
/external/chromium/chrome/browser/accessibility/
H A Drenderer_accessibility_browsertest.cc278 "<iframe src='data:text/html,"
280 "'></iframe>"
295 const WebAccessibility& iframe = body.children[1]; local
296 EXPECT_STREQ("iframe",
297 GetAttr(iframe, WebAccessibility::ATTR_HTML_TAG).c_str());
298 ASSERT_EQ(1U, iframe.children.size());
300 const WebAccessibility& scroll_area = iframe.children[0];
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomdocument.c34 #define HTML_DOCUMENT_IFRAME "<html><head><title>IFrame</title></head><body><iframe id='iframe'></iframe><div id='test'></div></body></html>"
263 WebKitDOMElement* iframe = webkit_dom_document_get_element_by_id(document, "iframe"); local
264 g_assert(iframe);
266 webkit_dom_element_set_attribute(iframe, "src", "data:<html><head></head></html>", NULL);
271 WebKitDOMDocument* iframeDocument = webkit_dom_html_iframe_element_get_content_document(WEBKIT_DOM_HTML_IFRAME_ELEMENT(iframe));
277 webkit_dom_element_set_attribute(iframe, "src", "about:blank", NULL);
/external/srec/srec/clib/
H A Dswicms.c476 imeldata* iframe, int dimen)
488 for(ii=0;ii<dimen;ii++) swicms->inutt.accum[ii] += iframe[ii];
508 oframe[ii] = MAKEBYTE(iframe[ii] + swicms->adjust[ii]);
474 apply_channel_normalization_in_swicms(swicms_norm_info *swicms, imeldata* oframe, imeldata* iframe, int dimen) argument
/external/webkit/Source/WebKit/android/jni/
H A DViewStateSerializer.cpp478 // If we are a scrollable layer android, we are an iframe content
483 } else if (isIframe) { // otherwise we are just the iframe (we use it to compute offset)
484 IFrameLayerAndroid* iframe = new IFrameLayerAndroid(*layer); local
486 layer = iframe;
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionServer.js193 var iframe = this.createClientIframe(panel.element, message.url);
194 iframe.style.height = "100%";
216 var iframe = document.createElement("iframe");
217 iframe.src = url;
218 iframe.style.width = "100%";
219 parent.appendChild(iframe);
220 return iframe;
392 var iframe = document.createElement("iframe");
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp901 HTMLIFrameElement* iframe = static_cast<HTMLIFrameElement*>(source.get()); local
902 if (frame() && frame()->tree()->isDescendantOf(iframe->contentFrame())) {
906 iframe->setRemainsAliveOnRemovalFromTree(attached() && source->attached());

Completed in 475 milliseconds