Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<!-- Note: this is a reflection test that will ultimately be removed in favor of using the
html/dom/elements-embedded.js file instead, once not tentative. -->
<link rel="author" title="Squarespace" href="https://www.squarespace.com/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<audio id="target" loading="lazy" controls></audio>
<script>
const audio = document.getElementById("target");
test(() => {
assert_equals(
audio.loading,
"lazy",
"Audio loading attribute should be 'lazy' when set to 'lazy'"
);
}, "Audio loading attribute should reflect the loading content attribute");
</script>