blob: 23b521326bb35170ca470747a78f85734585e550 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.waitUntilDone();
window.addEventListener('load', function () {
setTimeout(function () {
var el = document.querySelector("div");
el.className = "";
setTimeout(function () {
if (window.testRunner)
testRunner.notifyDone();
}, 0);
}, 0);
}, false);
</script>
<style>
div {
background-color: green;
width: 200px;
height: 200px;
}
.filtered {
filter: hue-rotate(180deg);
background-color: rgb(0, 166, 166);
}
</style>
<div style="filtered">
<!-- This paragraph starts with a filter, which will be removed. Once removed, it should have a green background. -->
</div>