Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Basic User Interface Test: appearance: menulist</title>
<link rel="match" href="appearance-invalidate-author-styling-001-ref.html">
<style>
input { appearance: auto; }
.styled {
background-image: none;
}
</style>
<input type="text" id="e">
<script>
document.addEventListener("TestRendered", () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.getElementById("e").classList.add("styled");
document.documentElement.className = "";
});
});
});
</script>