gecko-dev/layout/reftests/bugs/1488155.html
Emilio Cobos Álvarez f6e7b25483 Bug 1488155 - Only no-op visited <-> unvisited changes. r=heycam
Other changes should really be (and are) indistinguishable.

Differential Revision: https://phabricator.services.mozilla.com/D4847

--HG--
extra : moz-landing-system : lando
2018-09-05 12:52:16 +00:00

15 lines
290 B
HTML

<!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>