chromium/chrome/test/data/favicon/page_change_favicon_type_to_touch_icon_via_js.html

<html>
<head>
<link rel="icon" href="icon.png"/>
<script>
window.onload = function() {
  setTimeout(function() {
    link = document.getElementsByTagName("link")[0];
    link.rel = "apple-touch-icon";
    document.title = "OK";
  }, 0);
}
</script>
</head>
</html>