mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1207074468
--HG-- extra : rebase_source : 8b74cb3e4c60df4b84c207f2ae1bc371e238d19d
14 lines
419 B
HTML
14 lines
419 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<link rel="icon" href="http://example.org/one-icon" type="image/ico" id="i">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
window.addEventListener("PleaseChangeFavicon", function() {
|
|
var ico = document.getElementById("i");
|
|
ico.setAttribute("href", "http://example.org/other-icon");
|
|
});
|
|
</script>
|
|
</body></html>
|