mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
533 B
HTML
27 lines
533 B
HTML
<?xml version="1.0"?>
|
|
<!DOCTYPE html>
|
|
<a xmlns="http://www.w3.org/1999/xhtml"
|
|
href="http://www.example-notvisited.tld" class="reftest-wait">
|
|
<style>
|
|
<![CDATA[
|
|
|
|
a { display: block; width: 100%; height: 100% }
|
|
|
|
:link { background: red }
|
|
:visited { background: green }
|
|
|
|
]]>
|
|
</style>
|
|
<script>
|
|
<![CDATA[
|
|
|
|
var a = document.documentElement;
|
|
getComputedStyle(a, "").backgroundColor; // flush style
|
|
a.href = "";
|
|
getComputedStyle(a, "").backgroundColor; // flush style
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
]]>
|
|
</script>
|
|
</a>
|