- From: Karl Dubost <kdubost@mozilla.com>
- Date: Mon, 8 Feb 2016 16:17:05 +0900
- To: www-style@w3.org
On https://lists.w3.org/Archives/Public/www-style/2015May/0285.html
was discussed about the necessity to gather data about it.
Firefox is currently the only one to NOT implement zoom [1], and it creates Web Compatibility issues for at least two sites in Japan.
* Tokyo Metro
https://webcompat.com/issues/1118
if (userAgentCheck('iPhone', 'iPod', 'Android')) {
$(window).bind('resize load', function() {
$("html").css("zoom", $(window).width() / 640);
});
}
* CircleSunkus
https://webcompat.com/issues/952
<html style="zoom: 0.5625;">
and
//viewport
$(window).bind('resize load', function
(){
$("html").css("zoom" , $(window).width()/640);
});
This is not much, but at least some concrete data.
Mike Taylor has also written [2] about it.
[1]: https://bugzilla.mozilla.org/show_bug.cgi?id=390936
[2]: https://miketaylr.com/posts/2015/05/circleksunkus-dot-jp-zoom.html
--
Karl Dubost, Mozilla
http://www.la-grange.net/karl/moz
Received on Monday, 8 February 2016 07:17:40 UTC