blob: c983494dd19fd685b6bffb6fa3397d9a62b62739 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<title>rel=match waits for window load</title>
<link rel=match href=green.html>
<script>
window.onload = () => {
const s = document.createElement('style');
s.innerText = ':root {background-color:green}';
document.body.appendChild(s);
};
</script>
|