Changeset 268814 in webkit
- Timestamp:
- Oct 21, 2020, 12:14:42 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/http/wpt/webaudio/the-audio-api (added)
-
LayoutTests/http/wpt/webaudio/the-audio-api/the-audioworklet-interface (added)
-
LayoutTests/http/wpt/webaudio/the-audio-api/the-audioworklet-interface/exposed-properties.https-expected.txt (added)
-
LayoutTests/http/wpt/webaudio/the-audio-api/the-audioworklet-interface/exposed-properties.https.html (added)
-
LayoutTests/http/wpt/webaudio/the-audio-api/the-audioworklet-interface/processors (added)
-
LayoutTests/http/wpt/webaudio/the-audio-api/the-audioworklet-interface/processors/exposed-properties-processor.js (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/dom/MessageEvent.idl (modified) (1 diff)
-
Source/WebCore/dom/MessagePort.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r268812 r268814 1 2020-10-21 Chris Dumez <cdumez@apple.com> 2 3 MessagePort & MessageEvent should be exposed to AudioWorklets 4 https://bugs.webkit.org/show_bug.cgi?id=218037 5 6 Reviewed by Darin Adler. 7 8 Add layout test coverage. 9 10 * http/wpt/webaudio/the-audio-api/the-audioworklet-interface/exposed-properties.https-expected.txt: Added. 11 * http/wpt/webaudio/the-audio-api/the-audioworklet-interface/exposed-properties.https.html: Added. 12 * http/wpt/webaudio/the-audio-api/the-audioworklet-interface/processors/exposed-properties-processor.js: Added. 13 (ExposedPropertiesTestProcessor.prototype.process): 14 (ExposedPropertiesTestProcessor): 15 1 16 2020-10-21 Chris Dumez <cdumez@apple.com> 2 17 -
trunk/Source/WebCore/ChangeLog
r268812 r268814 1 2020-10-21 Chris Dumez <cdumez@apple.com> 2 3 MessagePort & MessageEvent should be exposed to AudioWorklets 4 https://bugs.webkit.org/show_bug.cgi?id=218037 5 6 Reviewed by Darin Adler. 7 8 MessagePort & MessageEvent should be exposed to AudioWorklets: 9 - https://html.spec.whatwg.org/#the-messageevent-interface 10 - https://html.spec.whatwg.org/#message-ports 11 12 Test: http/wpt/webaudio/the-audio-api/the-audioworklet-interface/exposed-properties.https.html 13 14 * dom/MessageEvent.idl: 15 * dom/MessagePort.idl: 16 1 17 2020-10-21 Chris Dumez <cdumez@apple.com> 2 18 -
trunk/Source/WebCore/dom/MessageEvent.idl
r266311 r268814 34 34 35 35 [ 36 Exposed=(Window,Worker ),36 Exposed=(Window,Worker,AudioWorklet), 37 37 JSCustomMarkFunction, 38 38 ReportExtraMemoryCost, -
trunk/Source/WebCore/dom/MessagePort.idl
r266311 r268814 28 28 [ 29 29 ActiveDOMObject, 30 Exposed=(Window,Worker ),30 Exposed=(Window,Worker,AudioWorklet), 31 31 GenerateIsReachable=Impl, 32 32 JSCustomMarkFunction,
Note:
See TracChangeset
for help on using the changeset viewer.