Title: [286486] trunk/LayoutTests
- Revision
- 286486
- Author
- [email protected]
- Date
- 2021-12-03 00:50:25 -0800 (Fri, 03 Dec 2021)
Log Message
[GStreamer] test http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html fails
https://bugs.webkit.org/show_bug.cgi?id=233737
Patch by Arcady Goldmints-Orlov <[email protected]> on 2021-12-03
Reviewed by Philippe Normand.
Give some more time to the frequency analyzer to detect activity.
* http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (286485 => 286486)
--- trunk/LayoutTests/ChangeLog 2021-12-03 08:25:14 UTC (rev 286485)
+++ trunk/LayoutTests/ChangeLog 2021-12-03 08:50:25 UTC (rev 286486)
@@ -1,3 +1,14 @@
+2021-12-03 Arcady Goldmints-Orlov <[email protected]>
+
+ [GStreamer] test http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html fails
+ https://bugs.webkit.org/show_bug.cgi?id=233737
+
+ Reviewed by Philippe Normand.
+
+ Give some more time to the frequency analyzer to detect activity.
+
+ * http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html:
+
2021-12-03 Alicia Boya GarcĂa <[email protected]>
[MSE] Fix erase range to prevent accidental deletion in files with changing durations
Modified: trunk/LayoutTests/http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html (286485 => 286486)
--- trunk/LayoutTests/http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html 2021-12-03 08:25:14 UTC (rev 286485)
+++ trunk/LayoutTests/http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html 2021-12-03 08:50:25 UTC (rev 286486)
@@ -37,11 +37,13 @@
}, 30);
audio.addEventListener("ended", event => {
- clearInterval(intervalToken);
- context.suspend().then(() => {
- shouldNotBe("outputArray", "silentArray");
- finishJSTest();
- });
+ setTimeout(function() {
+ clearInterval(intervalToken);
+ context.suspend().then(() => {
+ shouldNotBe("outputArray", "silentArray");
+ finishJSTest();
+ })
+ }, 100);
});
}
window.addEventListener('load', go);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes