blob: 30e2cbf51d7f0825023c79f4294087f1ad569d91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<html class="reftest-wait">
<style>
:link {
color: green;
}
</style>
<a id="target">Should be green</a>
<script>
window.addEventListener("MozReftestInvalidate", function() {
target.setAttribute("href", "");
document.documentElement.className = "";
});
</script>
|