1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

fuchsia_web / webengine / test / data / favicon.html [blame]

<html>
<head>
<title>Favicon</title>
<link id="favicon" rel='icon' type='image/png' />
<script>
  var params = new URLSearchParams(window.location.search);
  var favicon = document.getElementById('favicon')
  if (params.has("favicon")) {
    favicon.href = params.get("favicon");
  } else {
    favicon.href = 'favicon.png'
  }
</script>
</head>
</html>