HomeSort by relevance Sort by last modified time
    Searched full:opener (Results 1 - 25 of 37) sorted by null

1 2

  /external/webkit/WebCore/manual-tests/
target_new-1.html 4 <p>Reference the opener, its properties and functions via the links below.</p>
7 <li>Clicking <a href="#" onclick="alert(window.opener)">here</a> should alert "[object Window]"</li>
8 <li>Clicking <a href="#" onclick="alert(window.opener.aVar)">here</a> should alert "some value"</li>
9 <li>Clicking <a href="#" onclick="window.opener.externallyCalled()">here</a> should alert "hello from opener"</li>
invalid-mouse-event.html 17 window.opener.location = window.opener.location;
target_new.html 8 alert("hello from opener");
13 <p><b>BUG ID:</b> <a href="rdar://problem/4172380">4172380</a> [GENENTECH] window.opener not available when child opened via target="_new"</p>
19 Links in the new window that opens will alert "[object Window]", "some value", and "hello from opener".
stale-currentEvent.html 10 var src = 'data:text/html,<title>Pop up</title><input type="button" value="Close" onclick="opener.closeChild()">';
  /external/webkit/LayoutTests/http/tests/appcache/resources/
crash-when-navigating-away-then-back.html 7 window.opener.closedWindow();
12 window.opener.document.getElementById('result').innerHTML = 'SUCCESS';
  /external/webkit/LayoutTests/storage/domstorage/localstorage/resources/
window-open-second.html 23 log("Value for FOO in my opening window is " + window.opener.localStorage.getItem("FOO"));
25 window.opener.log(secondWindowLog);
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/
window-open-second.html 23 log("Value for FOO in my opening window is " + window.opener.sessionStorage.getItem("FOO"));
25 window.opener.log(secondWindowLog);
  /external/webkit/JavaScriptCore/tests/mozilla/
importList.html 17 var suites = window.opener.suites;
18 var elems = window.opener.document.forms["testCases"].elements;
21 window.opener.selectNone();
43 window.opener.updateTotals();
  /external/webkit/WebCore/bindings/generic/
BindingDOMWindow.h 90 // Before loading we have to set up the opener, openedByDOM,
97 // We pass in the opener frame here so it can be used for looking up the
98 // frame name, in case the active frame is different from the opener frame,
99 // and the name references a frame relative to the opener frame, for example
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 62 ClassPathOpener opener; local
64 opener = new ClassPathOpener(path, true,
132 opener.process();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-191668.js 39 * JS parser must look for HTML comment-opener <!--, but mustn't disallow <!-
regress-31255.js 44 * Note: <!--, --> are the HTML multi-line comment opener, closer.
  /external/webkit/WebCore/page/
DOMWindow.cpp 1012 DOMWindow* DOMWindow::opener() const function in class:WebCore::DOMWindow
1017 Frame* opener = m_frame->loader()->opener();
1018 if (!opener)
1021 return opener->domWindow();
    [all...]
DOMWindow.h 180 DOMWindow* opener() const;
  /external/webkit/WebCore/bindings/js/
JSDOMWindowCustom.cpp 686 // for the URL, but there's a reason for that. Before loading we have to set up the opener,
692 // We pass in the opener frame here so it can be used for looking up the frame name, in case the active frame
693 // is different from the opener frame, and the name references a frame relative to the opener frame, for example
    [all...]
  /external/openssl/crypto/ui/
ui.h 249 an opener This function starts a session, maybe by opening
273 The way this is used, the opener is first called, then the writer for all
308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
ui_lib.c 641 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui))
645 method->ui_open_session = opener;
  /external/openssl/include/openssl/
ui.h 249 an opener This function starts a session, maybe by opening
273 The way this is used, the opener is first called, then the writer for all
308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
  /external/webkit/WebCore/loader/
FrameLoader.cpp 1459 Frame* FrameLoader::opener() function in class:WebCore::FrameLoader
    [all...]
FrameLoader.h 269 Frame* opener();
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 261 ClassPathOpener opener; local
263 opener = new ClassPathOpener(pathname, false,
284 return opener.process();
    [all...]
  /cts/tools/dx-tests/src/dxconvext/
ClassFileParser.java 62 ClassPathOpener opener; local
  /cts/tools/dasm/src/java_cup/
lexer.java 246 /* swallow the opener */
275 /* swallow the opener */
  /external/webkit/WebKit/chromium/public/
WebFrame.h 151 virtual WebFrame* opener() const = 0;
322 // with a suppressed opener.
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 457 WebFrame* WebFrameImpl::opener() const function in class:WebKit::WebFrameImpl
459 Frame* opener = 0; local
461 opener = m_frame->loader()->opener();
462 return fromFrame(opener);
    [all...]

Completed in 987 milliseconds

1 2