Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-overflow.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Marquee forces overflow: hidden</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<marquee style="overflow: visible"> </marquee>
<marquee style="overflow: scroll"> </marquee>
<marquee style="overflow: clip"> </marquee>
<marquee style="overflow: auto"> </marquee>
<script>
test(() => {
for (let m of document.querySelectorAll("marquee")) {
assert_equals(getComputedStyle(m).overflow, "hidden", m.style);
}
}, "Marquee should have overflow: hidden !important in the UA stylesheet");
</script>