Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.javascript > #30323

Re: Ctrl + onload

From Thomas 'PointedEars' Lahn <PointedEars@web.de>
Newsgroups comp.lang.javascript
Subject Re: Ctrl + onload
Date 2016-04-26 02:55 +0200
Organization PointedEars Software (PES)
Message-ID <1736465.toUCHjCSI4@PointedEars.de> (permalink)
References <nepuha$19br$1@gioia.aioe.org> <nf447d$qv0$1@gioia.aioe.org> <7166847.g7ly2KG8ZP@PointedEars.de>

Show all headers | View raw


Thomas 'PointedEars' Lahn wrote:

> More, the first argument to an event listener, per the W3C DOM Level 2+
> Events and Web API Specifications, is a reference to an event object, an
> object implementing the Event interface.  It is that object that provides
> information as to what were the conditions when the event was fired (i.e.
> created and propagated to its target), including the status of the Ctrl
> key.

Correction:

There is no “Web API Specification” as such; instead, several Web APIs are 
specified separately.  W3C DOM Level 3 Events has been superseded by the “UI 
Events” Specification (WD) which is derived from the former, whereas the 
latter has informed DOM4 (REC).

However, the syntax of event listeners, in particular the signature of the 
handleEvent() method of the callback EventListener interface, has not 
changed compared to DOM Level 2+ Events (it only is specified as a method of 
a *callback* interface now, which makes a lot more sense than the previous 
IDL definition, thanks to using the Web IDL).

<http://www.w3.org/TR/2015/REC-dom-20151119/#goals>
<http://www.w3.org/TR/2015/REC-dom-20151119/#interface-eventtarget>

-- 
PointedEars
FAQ: <http://PointedEars.de/faq> | SVN: <http://PointedEars.de/wsvn/>
Twitter: @PointedEars2 | ES Matrix: <http://PointedEars.de/es-matrix>
Please do not cc me. / Bitte keine Kopien per E-Mail.

Back to comp.lang.javascript | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Ctrl + onload emf <emfril@gmail.com> - 2016-04-15 01:34 -0400
  Re: Ctrl + onload emf <emfril@gmail.com> - 2016-04-18 22:13 -0400
    Re: Ctrl + onload Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-04-19 19:46 +0200
      Re: Ctrl + onload Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2016-04-26 02:55 +0200

csiph-web