Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder linux-rel-wpt Build #9276

Results:

Build successful

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchauto
Revisione8554b5c6731efb873462d53d78738df6b77cf1d
Got Revisione8554b5c6731efb873462d53d78738df6b77cf1d
Changes1 change

BuildSlave:

servo-linux4

Reason:

The AnyBranchScheduler scheduler named 'servo-auto' triggered this build

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. generic generic ( 0 secs )
    1. - no logs -
  3. generic_1 generic_1 ( 0 secs )
    1. - no logs -
  4. shell 'pkill -x ...' ( 0 secs )
    1. stdio
  5. shell__1 './mach clean-nightlies ...' ( 11 secs )
    1. stdio
  6. shell__2 './mach clean-cargo-cache ...' ( 0 secs )
    1. stdio
  7. shell__3 './etc/ci/clean_build_artifacts.sh' ( 0 secs )
    1. stdio
  8. compile ran build --release --with-debug-assertions warnings ( 3 mins, 24 secs )
    1. warnings (1)
  9. test ran test-wpt-failure ( 0 secs )
    1. stdio
  10. test__1 ran test-wpt --release --processes 24 --total-chunks 2 --this-chunk 1 --always-succeed ( 15 mins, 51 secs )
    1. - no logs -
  11. shell__4 './mach filter-intermittents ...' ( 1 secs )
    1. stdio
    2. filtered-wpt-errorsummary.log
  12. test__2 ran test-wpt --release --binary-arg=--multiprocess --processes 24 eventsource ( 9 secs )
    1. wpt-mp-errorsummary.log

Build Properties:

NameValueSource
branch auto Build
builddir /home/servo/buildbot/slave/linux-rel-wpt slave
buildername linux-rel-wpt Builder
buildnumber 9276 Build
codebase Build
got_revision e8554b5c6731efb873462d53d78738df6b77cf1d Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision e8554b5c6731efb873462d53d78738df6b77cf1d Build
scheduler servo-auto Scheduler
slavename servo-linux4 BuildSlave
warnings-count 1 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-wpt slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartTue Jul 31 06:59:51 2018
EndTue Jul 31 07:19:32 2018
Elapsed19 mins, 41 secs

All Changes:

:

  1. Change #86876

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Tue 31 Jul 2018 06:44:12
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch auto
    Revision e8554b5c6731efb873462d53d78738df6b77cf1d

    Comments

    Auto merge of #21158 - ferjm:webaudio, r=manishearth,nox,ferjm
    
    WebAudio API
    
    - [X] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [x] These changes fix #6710
    - [X] There are tests for these changes
    
    This PR adds basic support for the WebAudio API using [servo-media](https://github.com/servo/media) with GStreamer as the audio backend.
    
    There are still some major stuff to fix like:
    
    - [x] Detach ArrayBuffer during the [AudioBuffer "acquire the content" operation](https://webaudio.github.io/web-audio-api/#acquire-the-content). I am naively using `JS_StealArrayBufferContents()` directly, because it is what Gecko uses, but this should probably be part of the [rust-mozjs](https://github.com/servo/rust-mozjs) [TypedArray](https://github.com/servo/rust-mozjs/blob/master/src/typedarray.rs) API. And, in any case, I am not even sure if that's the proper way to do it. According to the results of the WPTs it may not even be right since [this assertion](https://github.com/servo/rust-mozjs/blob/master/src/typedarray.rs#L285) is failing in some cases. I need to dig more about this.
    - [x] Disable the GStreamer dependency on Android. Unfortunately gstreamer-rs requires an NDK version upgrade, so we need to disable this for Android until then. I tried adding [different features to servo-media](https://github.com/servo/media/pull/79), but I am currently hitting [this issue](https://github.com/rust-lang/cargo/issues/1197)
    
    I still need to run servo-tidy, change the servo-media dependency to use the git repo and add/fix some comments and TODOs.
    
    The remaining feature work should be done in future PRs.
    
    Note that most of the failing WPTs are failing because we don't implement the tested features yet (we only implement a few AudioNodes) and we have no OfflineAudioContext support, which most WPTs rely on.
    
    <!-- Reviewable:start -->
    ---
    This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21158)
    <!-- Reviewable:end -->

    Changed files

    • .travis.yml
    • Cargo.lock
    • README.md
    • appveyor.yml
    • components/atoms/static_atoms.txt
    • components/fallible/Cargo.toml
    • components/gfx/Cargo.toml
    • components/layout/Cargo.toml
    • components/script/Cargo.toml
    • components/script/dom/audiobuffer.rs
    • components/script/dom/audiobuffersourcenode.rs
    • components/script/dom/audiocontext.rs
    • components/script/dom/audiodestinationnode.rs
    • components/script/dom/audionode.rs
    • components/script/dom/audioparam.rs
    • components/script/dom/audioscheduledsourcenode.rs
    • components/script/dom/baseaudiocontext.rs
    • components/script/dom/bindings/root.rs
    • components/script/dom/bindings/trace.rs
    • components/script/dom/gainnode.rs
    • components/script/dom/macros.rs
    • components/script/dom/mod.rs
    • components/script/dom/offlineaudiocompletionevent.rs
    • components/script/dom/offlineaudiocontext.rs
    • components/script/dom/oscillatornode.rs
    • components/script/dom/webidls/AudioBuffer.webidl
    • components/script/dom/webidls/AudioBufferSourceNode.webidl
    • components/script/dom/webidls/AudioContext.webidl
    • components/script/dom/webidls/AudioDestinationNode.webidl
    • components/script/dom/webidls/AudioNode.webidl
    • components/script/dom/webidls/AudioParam.webidl
    • components/script/dom/webidls/AudioScheduledSourceNode.webidl
    • components/script/dom/webidls/BaseAudioContext.webidl
    • components/script/dom/webidls/GainNode.webidl
    • components/script/dom/webidls/OfflineAudioCompletionEvent.webidl
    • components/script/dom/webidls/OfflineAudioContext.webidl
    • components/script/dom/webidls/OscillatorNode.webidl
    • components/script/lib.rs
    • components/selectors/Cargo.toml
    • components/style/Cargo.toml
    • python/tidy/servo_tidy/tidy.py
    • tests/wpt/include.ini
    • tests/wpt/metadata/webaudio/historical.html.ini
    • tests/wpt/metadata/webaudio/idlharness.https.window.js.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/ctor-analyser.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-sizing.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/test-analyser-gain.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/test-analyser-minimum.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/test-analyser-output.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/test-analyser-scale.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-analysernode-interface/test-analysernode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffer-interface/audiobuffer-copy-channel.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffer-interface/ctor-audiobuffer.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-channels.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-ended.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-multi-channels.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-one-sample-loop.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-playbackrate-zero.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiobuffersource-start.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/audiosource-time-limits.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/ctor-audiobuffersource.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/note-grain-on-play.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/note-grain-on-timing.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiobuffersourcenode-interface/sample-accurate-scheduling.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiocontext-interface/audiocontext-suspend-resume.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audiocontext-interface/audiocontextoptions.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode-channel-rules.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode-connect-method-chaining.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode-connect-order.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode-disconnect-audioparam.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode-disconnect.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audionode-interface/audionode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-connect-audioratesignal.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-exceptional-values.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-exponentialRampToValueAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-linearRampToValueAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-method-chaining.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-setTargetAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-setValueCurve-exceptions.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-setValueCurveAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/audioparam-summingjunction.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/automation-rate.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/event-insertion.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-audioworklet.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-biquad.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-constant-source.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-delay.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-gain.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-oscillator.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-panner.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/k-rate-stereo-panner.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/retrospective-exponentialRampToValueAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/retrospective-linearRampToValueAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/retrospective-setTargetAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/retrospective-setValueAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/retrospective-setValueCurveAtTime.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/setTargetAtTime-after-event-within-block.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioparam-interface/setValueAtTime-within-block.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworklet-addmodule-resolution.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworklet-audioparam-size.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworklet-audioparam.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworklet-messageport.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletglobalscope-sample-rate.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletglobalscope-timing-info.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-automatic-pull.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-channel-count.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-construction.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-constructor-options.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-disconnected-input.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletnode-onerror.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-options.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-audioworklet-interface/baseaudiocontext-audioworklet.https.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-allpass.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-automation.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-bandpass.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-getFrequencyResponse.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-highpass.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-highshelf.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-lowpass.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-lowshelf.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-notch.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-peaking.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquad-tail.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/biquadfilternode-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/ctor-biquadfilter.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-biquadfilternode-interface/no-dezippering.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelmergernode-interface/audiochannelmerger-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelmergernode-interface/audiochannelmerger-disconnect.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelmergernode-interface/audiochannelmerger-input-non-default.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelmergernode-interface/audiochannelmerger-input.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelmergernode-interface/ctor-channelmerger.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelsplitternode-interface/audiochannelsplitter.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-channelsplitternode-interface/ctor-channelsplitter.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-constantsourcenode-interface/constant-source-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-constantsourcenode-interface/constant-source-onended.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-constantsourcenode-interface/constant-source-output.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-constantsourcenode-interface/ctor-constantsource.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-constantsourcenode-interface/test-constantsourcenode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolution-mono-mono.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-cascade.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-channels.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-1-chan.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-2-chan.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-4-chan.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-setBuffer-already-has-value.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/convolver-setBuffer-null.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-convolvernode-interface/ctor-convolver.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/ctor-delay.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode-max-default-delay.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode-max-nondefault-delay.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode-maxdelay.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode-maxdelaylimit.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode-scheduling.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/delaynode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-delaynode-interface/no-dezippering.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-dynamicscompressornode-interface/ctor-dynamicscompressor.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-dynamicscompressornode-interface/dynamicscompressor-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-gainnode-interface/ctor-gain.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-gainnode-interface/gain.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-gainnode-interface/no-dezippering.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-gainnode-interface/test-gainnode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-iirfilternode-interface/ctor-iirfilter.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-iirfilternode-interface/iirfilter-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-iirfilternode-interface/iirfilter-getFrequencyResponse.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-iirfilternode-interface/iirfilter.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-iirfilternode-interface/test-iirfilternode.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-offlineaudiocontext-interface/ctor-offlineaudiocontext.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-oscillatornode-interface/ctor-oscillator.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/ctor-panner.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/distance-exponential.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/distance-inverse.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/distance-linear.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-automation-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-automation-equalpower-stereo.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-automation-position.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-distance-clamping.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-equalpower-stereo.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-equalpower.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/panner-rolloff-clamping.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/pannernode-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-pannernode-interface/test-pannernode-automation.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-stereopanner-interface/ctor-stereopanner.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-stereopanner-interface/no-dezippering.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-stereopanner-interface/stereopannernode-basic.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-stereopanner-interface/stereopannernode-panning.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/ctor-waveshaper.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/curve-tests.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/silent-inputs.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/waveshaper-copy-curve.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/waveshaper-limits.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/waveshaper-simple.html.ini
    • tests/wpt/metadata/webaudio/the-audio-api/the-waveshapernode-interface/waveshaper.html.ini
    • tests/wpt/mozilla/meta/MANIFEST.json
    • tests/wpt/mozilla/tests/mozilla/interfaces.html