inliner/test/fixtures/favicon.src.html
Joey Parrish 68c345ae8e feat: inline favicons with rel="shortcut icon"
If the page is using rel="shortcut icon" instead of rel="icon", the
author will be surprised that the icon was not inlined, and may not
notice.  It would be better to inline that icon.

Includes updates to the favicon tests.

Related to issue #126
2016-11-17 11:19:59 -08:00

12 lines
237 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>inline favicon</title>
<link rel="icon" type="image/png" href="colour.png">
<link rel="shortcut icon" type="image/png" href="colour.png">
</head>
<body>
</body>
</html>