Searched refs:passive (Results 1 - 13 of 13) sorted by relevance
/third_party/node/test/fixtures/wpt/dom/events/ |
H A D | AddEventListenerOptions-passive.any.js | 1 // META: title=AddEventListenerOptions.passive 6 get passive() { 18 assert_true(supportsPassive, "addEventListener doesn't support the passive option"); 22 assert_false(supportsPassive, "removeEventListener supports the passive option when it should not"); 23 }, "Supports passive option on addEventListener only"); 45 testPassiveValue({passive: false}, true); 46 testPassiveValue({passive: true}, false); 47 testPassiveValue({passive: 0}, true); 48 testPassiveValue({passive: 1}, false); 49 }, "preventDefault should be ignored if-and-only-if the passive optio [all...] |
/third_party/node/test/parallel/ |
H A D | test-whatwg-events-add-event-listener-options-passive.js | 5 // Manually converted from https://github.com/web-platform-tests/wpt/blob/master/dom/events/AddEventListenerOptions-passive.html 18 get passive() { 59 testPassiveValue({ passive: false }, true); 61 common.skip('TODO: passive listeners is still broken'); 62 testPassiveValue({ passive: 1 }, false); 63 testPassiveValue({ passive: true }, false); 64 testPassiveValue({ passive: 0 }, true);
|
/third_party/node/test/fixtures/wpt/dom/events/non-cancelable-when-passive/resources/ |
H A D | scrolling.js | 10 async function runTest({target, eventName, passive, expectCancelable}) { 18 }, {passive:passive, once:true});
|
H A D | touching.js | 20 function runTest({target, eventName, passive, expectCancelable}) { 27 }, {passive});
|
/third_party/node/lib/internal/ |
H A D | event_target.js | 418 constructor(eventTarget, eventType, previous, listener, once, capture, passive, 431 if (passive) 473 get passive() { 527 [kNewListener](size, type, listener, once, capture, passive, weak) { 562 * passive?: boolean, 577 passive, 614 new Listener(this, type, root, listener, once, capture, passive, 622 passive, 641 new Listener(this, type, previous, listener, once, capture, passive, 645 this[kNewListener](root.size, type, listener, once, capture, passive, wea [all...] |
H A D | abort_controller.js | 238 [kNewListener](size, type, listener, once, capture, passive, weak) { 239 super[kNewListener](size, type, listener, once, capture, passive, weak);
|
/third_party/lwip/src/include/netif/ppp/ |
H A D | lcp.h | 115 unsigned int passive :1; /* Don't die if we don't get a response */ member
|
H A D | ppp.h | 539 #define ppp_set_passive(ppp, boolval) (ppp->lcp_wantoptions.passive = boolval)
|
/third_party/python/Tools/msi/ |
H A D | testrelease.bat | 59 "%~1" /passive /log "%~2\install\log.txt" TargetDir="%~2\Python" Include_debug=1 Include_symbols=1 %~3
100 "%~1" /passive /uninstall /log "%~2\uninstall\log.txt"
|
/third_party/lwip/src/netif/ppp/ |
H A D | lcp.c | 162 { "passive", o_bool, &lcp_wantoptions[0].passive, 163 "Set passive mode", 1 }, 164 { "-p", o_bool, &lcp_wantoptions[0].passive, 165 "Set passive mode", OPT_ALIAS | 1 }, 411 if (wo->passive) in lcp_open() 445 * because we are in passive/silent mode or because we have in lcp_close()
|
H A D | pppoe.c | 523 /* PPPDEBUG(LOG_DEBUG, ("pppoe: free passive interface is not found\n")); */ in pppoe_disc_input() 914 lcp_wo->passive = 0; in pppoe_connect()
|
H A D | pppol2tp.c | 283 lcp_wo->passive = 0; in pppol2tp_connect()
|
/third_party/python/ |
H A D | configure | 21412 int passive, gaierr, inet4 = 0, inet6 = 0; 21416 for (passive = 0; passive <= 1; passive++) { 21419 hints.ai_flags = passive ? AI_PASSIVE : 0; 21439 if (passive) { 21454 if (passive) {
|
Completed in 29 milliseconds