I can see those images in the CSS file that results after this call as background images on the default skin of es.wikipedia. They look correct in the CSS:
http://bits.wikimedia.org/es.wikipedia.org/load.php?debug=false&lang=es&modules=ext.gadget.a-commons-directo%2Cimagenesinfobox%2CrefToolbar%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles&only=styles&skin=vector&* The likely explanation could be that there is some syntax issue (that only appears on windows?) on the data image path specified by us in the css and thus some less forgiving browsers are not interpreting the image in the css as a "data" url but rather as a regular one and then the url is composed as if it was a relative url (using the current domain) and fetched (or tried to fetch) That is, some browsers on windows are interpreting data urls as if they were like this: background-url:url('/some/relative/path') In any case that fetch should be a 404 so the thing we should probably think of fixing going forward is not counting 404 urls in pageviews. On Thu, Jun 5, 2014 at 6:12 PM, Bartosz Dziewoński <[email protected]> wrote: > On Thu, 05 Jun 2014 15:36:07 +0200, Christian Aistleitner < > [email protected]> wrote: > > The image data in the data uri scheme decodes to images from >> VectorBeta [3] like: >> VectorBeta/resources/typography/images/search-fade.png >> VectorBeta/resources/typography/images/tab-break.png >> VectorBeta/resources/typography/images/tab-current-fade.png >> VectorBeta/resources/typography/images/portal-break.png >> > > These images are also part of the core Vector skin, where > they sit at [mediawiki/core]/skins/vector/images. > > -- > Matma Rex > > _______________________________________________ > Wikitech-l mailing list > [email protected] > https://lists.wikimedia.org/mailman/listinfo/wikitech-l _______________________________________________ Wikitech-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikitech-l
