blob: 5a45f10f35eb472ec13cc5dd247ff8df5c265385 (
plain)
1
2
3
4
5
6
7
8
9
|
<link rel=match href=green.html>
<style>
:root {background-color:red}
</style>
<script>
if (window.location.protocol === "https:") {
document.documentElement.style.backgroundColor = "green";
}
</script>
|