Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-ui/appearance-invalidate-author-styling-001.html - WPT Dashboard Interop Dashboard
<!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>