[Webkit-unassigned] [Bug 125775] New: Implement sizes attribute for link tag
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Dec 16 05:29:48 PST 2013
https://bugs.webkit.org/show_bug.cgi?id=125775
Summary: Implement sizes attribute for link tag
Product: WebKit
Version: 528+ (Nightly build)
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: HTML DOM
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: william.jon.mccann at gmail.com
CC: cgarcia at igalia.com
Bug #37674 implemented sizes attribute support for the link tag, but only for javascript:
+#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
+ attribute [Custom] DOMSettableTokenList sizes;
+#endif
This is really useful because it is pretty common these days to have something like this:
<link rel="apple-touch-icon-precomposed" href="images/icons/54.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="images/icons/72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="images/icons/114.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="images/icons/144.png">
So, it would be really useful to have this available from C as well.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list