Searched refs:bubbles (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp39 bool bubbles = info[1]->BooleanValue(); local
52 imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get());
H A DV8DeviceMotionEventCustom.cpp108 bool bubbles = info[1]->BooleanValue(); local
116 imp->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.cpp51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation) argument
56 initEvent(type, bubbles, cancelable);
H A DDeviceMotionEvent.cpp53 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData) argument
58 initEvent(type, bubbles, cancelable);
H A DDeviceMotionEvent.idl34 [Default=Undefined] optional boolean bubbles,
H A DDeviceOrientationEvent.idl32 [Default=Undefined] optional boolean bubbles,
H A DDeviceOrientationEvent.h47 void initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData*);
H A DDeviceMotionEvent.h49 void initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData*);
/external/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js23 function(eventType, bubbles, cancellable, detail) {};
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js23 function(eventType, bubbles, cancellable, detail) {};
/external/chromium_org/chrome/test/chromedriver/js/
H A Ddispatch_context_menu_event.js27 bubbles: true,
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEvent.cpp34 : bubbles(false)
75 , m_canBubble(initializer.bubbles)
H A DEvent.h44 bool bubbles; member in struct:WebCore::EventInit
122 bool bubbles() const { return m_canBubble; } function in class:WebCore::Event
H A DEvent.idl55 [InitializedByEventConstructor] readonly attribute boolean bubbles;
H A DEventDispatcher.cpp173 else if (m_event->bubbles() && !m_event->cancelBubble())
181 if (m_event->bubbles() && !m_event->cancelBubble()) {
208 if (m_event->bubbles()) {
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dstartup_page_list_browsertest.js120 var event = new MouseEvent(type, {bubbles: true, cancelable: true});
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBEventDispatcher.cpp53 if (event->propagationStopped() || !event->bubbles() || event->cancelBubble())
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
H A Dtest_util.js337 focusEvent.initEvent('focus', true /* bubbles */, true /* cancelable */);
344 inputEvent.initEvent('input', true /* bubbles */, true /* cancelable */);
563 { bubbles: true, keyIdentifier: keyIdentifier, ctrlKey: ctrl });
581 var mouseOverEvent = new MouseEvent('mouseover', {bubbles: true, detail: 1});
584 var mouseDownEvent = new MouseEvent('mousedown', {bubbles: true, detail: 1});
587 var mouseUpEvent = new MouseEvent('mouseup', {bubbles: true, detail: 1});
590 var clickEvent = new MouseEvent('click', {bubbles: true, detail: 1});
615 var event = new MouseEvent('click', { bubbles: true, detail: 2 });
622 var event = new MouseEvent('dblclick', { bubbles: true });
641 var event = new MouseEvent('mousedown', { bubbles
[all...]
/external/chromium/chrome/browser/resources/ntp4/
H A Dtouch_handler.js130 * @param {boolean} bubbles Whether or not the event should bubble.
136 TouchHandler.Event = function(type, bubbles, clientX, clientY,
139 event.initEvent(type, bubbles, true);
828 var bubbles = !isDrag;
830 var event = new TouchHandler.Event(eventType, bubbles, clientX, clientY,
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dtouchhandler.js130 * @param {boolean} bubbles Whether or not the event should bubble.
136 TouchHandler.Event = function(type, bubbles, clientX, clientY,
139 event.initEvent(type, bubbles, true);
828 var bubbles = !isDrag;
830 var event = new TouchHandler.Event(eventType, bubbles, clientX, clientY,
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMEvent.cpp93 bool WebDOMEvent::bubbles() const function in class:blink::WebDOMEvent
96 return m_private->bubbles();
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dtouch_handler.js134 * @param {boolean} bubbles Whether or not the event should bubble.
140 TouchHandler.Event = function(type, bubbles, clientX, clientY,
143 event.initEvent(type, bubbles, true);
851 var bubbles = !isDrag;
853 var event = new TouchHandler.Event(eventType, bubbles, clientX, clientY,
H A Dcommand.js98 var e = new Event('command', {bubbles: true});
297 var e = new Event('canExecute', {bubbles: true});
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMEvent.h74 BLINK_EXPORT bool bubbles() const;
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.cpp265 initializer.bubbles = false;
293 initializer.bubbles = false;

Completed in 581 milliseconds

12