/external/webkit/Source/WebCore/manual-tests/ |
modal-dialog-blur-selfclose.html | 2 window.close()
|
targeted.html | 1 This should open in a new window.
|
/external/webkit/LayoutTests/fast/js/resources/ |
fs-test-post.js | 3 if (window.layoutTestController) 5 if (window.wasFinishJSTestCalled)
|
js-test-post.js | 3 if (window.jsTestIsAsync) { 4 if (window.layoutTestController) 6 if (window.wasFinishJSTestCalled)
|
js-test-post-n.js | 1 shouldBeUndefined("window.successfullyParsed");
|
/external/webkit/Source/WebCore/manual-tests/resources/ |
window-close-during-parsing-popup2.html | 2 <body onload="window.print()"> 4 window.close()
|
open-after-close-popup.html | 3 PASS: window.open succeeded after window.close using same name.
|
/external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/ |
window-property.js | 1 description("Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present."); 5 for (var property in window) { 12 shouldBeTrue("typeof window.DeviceMotionEvent == 'object'"); 13 shouldBeFalse("typeof window.DeviceMotionEvent == 'function'"); 15 shouldBeTrue("'DeviceMotionEvent' in window"); 16 shouldBeTrue("window.hasOwnProperty('DeviceMotionEvent')"); 20 for (var property in window) { 27 shouldBeTrue("typeof window.ondevicemotion == 'object'"); 29 shouldBeTrue("'ondevicemotion' in window"); [all...] |
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
window-property.js | 1 description('Tests that the window.DeviceOrientationEvent and window.ondeviceorientation properties are present.'); 5 for (var property in window) { 12 shouldBeTrue("typeof window.DeviceOrientationEvent == 'object'"); 13 shouldBeFalse("typeof window.DeviceOrientationEvent == 'function'"); 15 shouldBeTrue("'DeviceOrientationEvent' in window"); 16 shouldBeTrue("window.hasOwnProperty('DeviceOrientationEvent')"); 20 for (var property in window) { 27 shouldBeTrue("typeof window.ondeviceorientation == 'object'"); 29 shouldBeTrue("'ondeviceorientation' in window"); [all...] |
event-after-navigation.js | 3 if (window.layoutTestController) 9 window.addEventListener('deviceorientation', function() { } ); 10 window.location = "resources/event-after-navigation-new.html"; 13 window.jsTestIsAsync = true; 14 window.successfullyParsed = true;
|
/external/webkit/LayoutTests/storage/domstorage/ |
window-attributes-exist.html | 5 if (window.layoutTestController) 31 if ("sessionStorage" in window) { 32 log("window.sessionStorage exists"); 33 testStorage("sessionStorage", window.sessionStorage); 34 log("window.sessionStorage == window.sessionStorage: " + (window.sessionStorage == window.sessionStorage)); 35 log("window.sessionStorage === window.sessionStorage: " + (window.sessionStorage === window.sessionStorage)) [all...] |
window-attributes-exist-expected.txt | 1 This test checks to see if window.localStorage, window.sessionStorage and window.onstorage exist. 2 window.sessionStorage exists 9 window.sessionStorage == window.sessionStorage: true 10 window.sessionStorage === window.sessionStorage: true 11 window.localStorage exists 18 window.localStorage == window.localStorage: tru [all...] |
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/ |
window_operations.applescript | 5 -- Contains usage of common window operations. 7 get URL of active tab of window 1 -- The URL currently being seen. 9 set minimized of window 1 to true -- Minimizes a window. 10 set minimized of window 1 to false -- Maximizes a window. 12 get mode of window 1 13 -- Checks if a window is in |normal mode| or |incognito mode| 15 set visible of window 1 to true -- Hides a window [all...] |
/external/webkit/LayoutTests/fast/dom/DeviceMotion/ |
window-property-expected.txt | 1 Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present. 6 PASS typeof window.DeviceMotionEvent == 'object' is true 7 PASS typeof window.DeviceMotionEvent == 'function' is false 9 PASS 'DeviceMotionEvent' in window is true 10 PASS window.hasOwnProperty('DeviceMotionEvent') is true 11 PASS typeof window.ondevicemotion == 'object' is true 13 PASS 'ondevicemotion' in window is true 14 PASS window.hasOwnProperty('ondevicemotion') is true
|
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/ |
window-property-expected.txt | 1 Tests that the window.DeviceOrientationEvent and window.ondeviceorientation properties are present. 6 PASS typeof window.DeviceOrientationEvent == 'object' is true 7 PASS typeof window.DeviceOrientationEvent == 'function' is false 9 PASS 'DeviceOrientationEvent' in window is true 10 PASS window.hasOwnProperty('DeviceOrientationEvent') is true 11 PASS typeof window.ondeviceorientation == 'object' is true 13 PASS 'ondeviceorientation' in window is true 14 PASS window.hasOwnProperty('ondeviceorientation') is true
|
/external/chromium/chrome/browser/ |
plugin_carbon_interpose_mac.cc | 15 // Returns true if the given window is modal. 16 static bool IsModalWindow(WindowRef window) { 19 OSStatus status = GetWindowModality(window, &modality, &modal_target); 27 static CGRect CGRectForWindow(WindowRef window) { 29 HIWindowGetBounds(window, kWindowContentRgn, kHICoordSpace72DPIGlobal, 37 WindowInfo(WindowRef window) { 38 window_id = HIWindowGetCGWindowID(window); 39 bounds = CGRectForWindow(window); 48 static void OnPluginWindowShown(WindowRef window) { 50 HIWindowGetCGWindowID(window), CGRectForWindow(window) 121 WindowRef window = GetDialogWindow(dialog); local [all...] |
/external/clang/test/SemaObjC/ |
pedantic-dynamic-test.m | 6 int window; 8 @property int window, noWarningNeeded; 13 @synthesize window;
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/ |
window-open-second.html | 5 var secondWindowLog = "Logging from second window:<br>"; 14 if (!window.sessionStorage) { 15 log("window.sessionStorage DOES NOT exist"); 19 log("Value for FOO is " + window.sessionStorage.getItem("FOO")); 20 window.sessionStorage.setItem("FOO", "BAR-NEWWINDOW"); 21 log("Value for FOO after changing my own copy is " + window.sessionStorage.getItem("FOO")); 23 log("Value for FOO in my opening window is " + window.opener.sessionStorage.getItem("FOO")); 25 window.opener.log(secondWindowLog); 27 if (window.layoutTestController [all...] |
/external/webkit/LayoutTests/storage/domstorage/events/resources/ |
body-event-handler.html | 4 window.parent.storageEventList.push(e); 7 </script></head><body onstorage="handleStorageEvent(window.event);">
|
/external/webkit/Source/WebCore/manual-tests/redirectHistory/ |
redir-3.html | 5 window.setTimeout("window.history.back()", 1000);
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/resources/ |
window-open-second.html | 5 var secondWindowLog = "Logging from second window:<br>"; 14 if (!window.localStorage) { 15 log("window.localStorage DOES NOT exist"); 19 log("Value for FOO is " + window.localStorage.getItem("FOO")); 20 window.localStorage.setItem("FOO", "BAR-NEWWINDOW"); 21 log("Value for FOO after changing my own copy is " + window.localStorage.getItem("FOO")); 23 log("Value for FOO in my opening window is " + window.opener.localStorage.getItem("FOO")); 25 window.opener.log(secondWindowLog); 27 if (window.layoutTestController [all...] |
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
simple-usage.html | 6 if (window.layoutTestController) 16 if (!window.sessionStorage) { 17 log("window.sessionStorage DOES NOT exist"); 21 log("Length is " + window.sessionStorage.length); 22 log("Value for FOO is " + window.sessionStorage.getItem("FOO")); 24 window.sessionStorage.setItem("FOO", "BAR"); 26 log("Length is " + window.sessionStorage.length); 27 log("Value for FOO is " + window.sessionStorage.getItem("FOO")); 28 log("Key for index 0 is " + window.sessionStorage.key(0)); 29 log("Key for index 1 is " + window.sessionStorage.key(1)) [all...] |
window-open-expected.txt | 1 This is a new window to make sure there is a copy of the previous window's sessionStorage, and that they diverge after a change 3 Logging from second window: 6 Value for FOO in my opening window is BAR
|
window-open.html | 6 if (window.layoutTestController) { 19 if (!window.sessionStorage) { 20 log("window.sessionStorage DOES NOT exist"); 24 window.log = log; 26 window.sessionStorage.setItem("FOO", "BAR"); 27 log("Value for FOO is " + window.sessionStorage.getItem("FOO")); 28 window.open("resources/window-open-second.html"); 36 This is a new window to make sure there is a copy of the previous window's sessionStorage, and that they diverge after a change<br [all...] |
/frameworks/base/native/android/ |
native_window.cpp | 43 void ANativeWindow_acquire(ANativeWindow* window) { 44 window->incStrong((void*)ANativeWindow_acquire); 47 void ANativeWindow_release(ANativeWindow* window) { 48 window->decStrong((void*)ANativeWindow_acquire); 51 static int32_t getWindowProp(ANativeWindow* window, int what) { 53 int res = window->query(window, what, &value); 57 int32_t ANativeWindow_getWidth(ANativeWindow* window) { 58 return getWindowProp(window, NATIVE_WINDOW_WIDTH); 61 int32_t ANativeWindow_getHeight(ANativeWindow* window) { [all...] |