We have 'abc.com' and users have their own page with 'abc.com/userid'
Users set favicon for thier page, and published.
But some browsers(iOS Safari) replace all favicons in bookmarks which already exist
This is step:
- I add bookmark 'abc.com/user1' with favicon 'user1.png'
- I add bookmark 'abc.com/user2' with favicon 'user2.png'
- Both bookmark image are same 'user2.png'
I can't find spec about it. I want to know whether favicon is unique for domain or not
Thanks
`document.title = this.storeState.business.name;
document.head || (document.head = document.getElementsByTagName('head')[0]);
var link = document.createElement('link');
link.rel = 'apple-touch-icon';
link.href = '/images/icons/' + this.storeState.business.faviconUrl;
document.head.appendChild(link);` – Jason Nov 20 '18 at 04:27