HomeSort by relevance Sort by last modified time
    Searched full:popup (Results 26 - 50 of 775) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
manifest.json 8 "popup": "popup.html"
  /packages/apps/Contacts/src/com/android/contacts/util/
UiClosables.java 29 * @param popup The popup window to close.
30 * @return {@code true} if the popup was showing. {@code false} otherwise.
32 public static boolean closeQuietly(ListPopupWindow popup) {
33 if (popup != null && popup.isShowing()) {
34 popup.dismiss();
  /external/chromium/chrome/browser/tabs/
pinned_tab_service_unittest.cc 34 // Makes sure closing a popup triggers writing pinned tabs.
35 TEST_F(PinnedTabServiceTest, Popup) {
40 // Create a popup.
41 scoped_ptr<Browser> popup(new Browser(Browser::TYPE_POPUP, profile()));
43 new TestBrowserWindow(popup.get()));
44 popup->set_window(popup_window.get());
53 // Close the popup. This shouldn't reset the saved state.
54 popup->CloseAllTabs();
55 popup.reset(NULL);
  /external/chromium/chrome/common/extensions/docs/examples/api/extension/
isAllowedAccess.zip 
  /external/chromium/chrome/common/extensions/docs/examples/api/i18n/
getMessage.zip 
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
manifest.json 8 "default_popup": "popup.html"
  /external/webkit/Source/WebCore/manual-tests/
autofill-popup-location.html 5 Test autofill popup window shows at the correct location.
9 <h3>Test autofill popup window shows at the correct location.</h3>
13 <li> Press 'a' and make sure 'Always show bookmarks bar' is shown in autofill popup window.</li>
15 <li> Press 't' and make sure 'Test' is shown and the popup window location is correct.</li>
liveconnect-security-exception.html 15 <body onload="loadApplet();window.open('resources/liveconnect-security-exception-popup.html', 'w', 'height=300, width=300');">
19 <li>Disable popup blocking.</li>
20 <li>Select the window titled "popup window."</li>
21 <li>From the debug menu, select "Show JavaScript console." This will allow you to see errors thrown in the popup window by the Java Virtual Machine. If there are any, the test has failed.</li>
22 <li>If the text in the popup window does not match the text below, the test has failed:<br>
update-empty-popup.html 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=13379">Bugzilla bug 13379</a> REGRESSION: Cannot add an option to a selected popup</p>
10 1. Click on the empty popup button.<br>
15 The popup button will change to display the word SUCCESS.
19 The popup button will become wider but will not display any text. Clicking the popup
open-after-close.html 3 var url = "resources/open-after-close-popup.html";
6 var w = window.open(url, 'popup', "height=200, width=200, top=100, left=100");
8 window.open(url, 'popup', "height=200, width=200, top=100, left=100");
  /external/webkit/Source/WebCore/manual-tests/chromium/
suggestions-popup-font-change.html 5 <p>Verify that the font size in the suggestion popup matches the corresponding
9 <li>2. Type "a" in the text form, suggestions popup should appear.
10 Verify that font size of text in suggestion popup is the same as in
17 <form method="get" action="suggestions-popup-font-change.html" id="form">
  /external/webkit/Source/WebCore/manual-tests/resources/
popup200x100.html 3 <title>Popup 200x100</title>
popup200x200.html 3 <title>Popup 100x100</title>
  /development/samples/ApiDemos/src/com/example/android/apis/view/
PopupMenu1.java 30 * show a popup menu from an XML resource.
40 PopupMenu popup = new PopupMenu(this, button); local
41 popup.getMenuInflater().inflate(R.menu.popup, popup.getMenu());
43 popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
45 Toast.makeText(PopupMenu1.this, "Clicked popup menu item " + item.getTitle(),
51 popup.show();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
manifest.json 17 "popup": "popup.html"
  /external/chromium/chrome/browser/extensions/
extension_host_mac.mm 14 // If there is a popup open for this host's extension, close it.
15 ExtensionPopupController* popup = [ExtensionPopupController popup];
16 if ([[popup window] isVisible] &&
17 [popup extensionHost]->extension() == this->extension()) {
18 InfoBubbleWindow* window = (InfoBubbleWindow*)[popup window];
20 [popup close];
  /cts/tests/assets/webkit/
popup_base.html 22 newWindow = window.open("popup.html");
24 document.title = "Popup blocked";
29 Popup blocked
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_win.cc 19 // handle and show this popup window under the IME windows.
20 // Otherwise, show this popup window under top-most windows.
21 // TODO(hbono): http://b/1111369 if we exclude this popup window from the
  /external/webkit/Source/WebCore/manual-tests/plugins/
gtk-windowed-grey-glitch.html 13 <li>1. Click on the button to open popup with full screen flash animation.</li>
14 <li>2. Make sure the popup content is not grey.</li>
15 <li>3. Resize the popup. </li>
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view.h 6 // will implement the popup view differently, so that code is inheriently
25 // Returns true if the popup is currently open.
28 // Invalidates one line of the autocomplete popup.
31 // Redraws the popup window to match any changes in the result set; this may
35 // Returns the target bounds for the popup. This returns the popup's current
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
manifest.json 16 "popup": "popup.html"
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebPlugin.h 34 class Popup : public QDialog {
37 Popup(const QWebSelectData& data) : m_data(data) { setModal(true); }
53 class SingleSelectionPopup : public Popup {
60 class MultipleSelectionPopup : public Popup {
81 Popup* m_popup;
83 Popup* createPopup(const QWebSelectData& data);
84 Popup* createSingleSelectionPopup(const QWebSelectData& data);
85 Popup* createMultipleSelectionPopup(const QWebSelectData& data);
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.h 67 int yOffset; // y offset of this item, relative to the top of the popup.
79 // autofill popup. We cannot use the Popup class directly in that case as the
80 // autofill popup should not be focused when shown and we want to forward the
88 // Whether the selection should be accepted when the popup menu is
107 Select, // HTML select popup.
108 Suggestion, // Autocomplete/autofill popup.
114 // Whether a key event should be sent to this popup.
128 // Show the popup
131 // Show the popup in the specified rect for the specified frame
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 44 * <p>A popup window that can be used to display an arbitrary view. The popup
54 * input method should be based on the focusability of the popup. That is
61 * Mode for {@link #setInputMethodMode(int)}: this popup always needs to
69 * Mode for {@link #setInputMethodMode(int)}: this popup never needs to
148 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
150 * <p>The popup does provide a background.</p>
157 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
159 * <p>The popup does provide a background.</p>
166 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/
manifest.json 10 "popup": "views/feed.html"

Completed in 520 milliseconds

12 3 4 5 6 7 8 91011>>