From 0596cfd7bbfe6488fcd085fafe7bf738eba88f97 Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Thu, 4 Apr 2024 15:02:41 +0000 Subject: [PATCH] Bug 1860492 - Adjust docs. r=media-playback-reviewers,alwu Differential Revision: https://phabricator.services.mozilla.com/D204647 --- testing/docs/mochitest-plain/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/docs/mochitest-plain/faq.md b/testing/docs/mochitest-plain/faq.md index 47a8bbed18de..a852f135d8fa 100644 --- a/testing/docs/mochitest-plain/faq.md +++ b/testing/docs/mochitest-plain/faq.md @@ -268,7 +268,7 @@ state available to SJS scripts running in Mochitest: function handleRequest(req, res) { var file; getObjectState("SERVER_ROOT", function(serverRoot) { - file = serverRoot.getFile("tests/content/media/test/320x240.ogv"); + file = serverRoot.getFile("tests/content/media/test/320x240.webm"); }); // file is now an XPCOM object referring to the given file res.write("file: " + file);