[Bug 17493] JSAudioNode should be an EventTarget

https://www.w3.org/Bugs/Public/show_bug.cgi?id=17493

Dominic Cooney <dominicc@chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |dominicc@chromium.org
         Resolution|---                         |FIXED

--- Comment #4 from Dominic Cooney <dominicc@chromium.org> ---
I believe that this is fixed; ScriptProcessorNode (the new name of
JavaScriptAudioNode) no longer has anything to do with EventTarget (good!)

The interfaces are now [1]

interface ScriptProcessorNode : AudioNode {

    attribute EventListener onaudioprocess;

    readonly attribute long bufferSize;

};

interface AudioNode {
    …
};

[1]
<https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#ScriptProcessorNode>

There is a separate bug 20764 for using a proper callback instead of
EventListener for onaudioprocess.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 19 February 2013 05:13:27 UTC