commit ce262f8577c500eb441d9e9d6ccf9198791e19a3 parent 4637467005110899e667511e7c1ab1d3af4e1594 Author: Simon Pieters <zcorpan@gmail.com> Date: Wed, 26 Nov 2025 09:00:35 +0000 Bug 1966111 [wpt PR 52495] - [docs] Fix typos in channels.md, a=testonly Automatic update from web-platform-tests [docs] Fix typos in channels.md -- wpt-commits: 70a57accb0f2a5e9c88e063ad4923a0baee841d0 wpt-pr: 52495 Diffstat:
| M | testing/web-platform/tests/docs/writing-tests/channels.md | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/testing/web-platform/tests/docs/writing-tests/channels.md b/testing/web-platform/tests/docs/writing-tests/channels.md @@ -75,9 +75,9 @@ test.html ```html <!doctype html> <title>call example</title> -<script src="/resources/testharness.js"> -<script src="/resources/testharnessreport.js"> -<script src="/resources/channel.js"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/resources/channels.sub.js"></script> <script> promise_test(async t => { @@ -94,7 +94,8 @@ promise_test(async t => { child.html ```html -<script src="/resources/channel.js"> +<!doctype html> +<script src="/resources/channels.sub.js"></script> <p id="nottest">FAIL</p> <p id="test">PASS</p>