- From: James Craig <jcraig@apple.com>
- Date: Wed, 06 Aug 2014 10:14:21 -0700
- To: W3C WAI Protocols & Formats <public-pfwg@w3.org>
I believe these two PF/CSS issues can be closed. If you disagree, please respond before the next PF call on the morning of Wednesday August 13th. Thanks.
> ACTION-931: Drive working with CSS on how various mouse cursor options should be chosen
> https://www.w3.org/WAI/PF/Group/track/actions/931
I think this works well as-is. The CSS cursor property defines types and the large mouse cursors work well on OS X for standard and HiDPI displays. If there is a problem with a particular property or system, we'll need a more specific action.
> ACTION-932: Explore CSS generated content more
> https://www.w3.org/WAI/PF/Group/track/actions/932
This will be addressed in the CSS4 Generated Content module as a new "alt"property. Like the "content" property, it is limited to CSS-generated content, so only allowed on ::before/::after pseudo-elements, counters, etc.
http://lists.w3.org/Archives/Public/www-style/2012Nov/0319.html
WebKit nightlies and OSX/iOS betas support -webkit-alt in the meantime.
https://bugs.webkit.org/show_bug.cgi?id=120188
For example:
link.new::after {
content: url(./img/star.png);
alt: "New!" /* or localized value as attr(data-foo); */
-webkit-alt: "New!";
}
Received on Wednesday, 6 August 2014 17:18:05 UTC