Image scaling by CSS: is there a webkit alternative for -moz-crisp-edges?

WebKit now supports the CSS directive: image-rendering:-webkit-optimize-contrast; You can see it working in action using Chrome and the last image on this page: http://phrogz.net/tmp/canvas_image_zoom.html The rules used on that page are: .pixelated { image-rendering:optimizeSpeed; /* Legal fallback */ image-rendering:-moz-crisp-edges; /* Firefox */ image-rendering:-o-crisp-edges; /* Opera */ image-rendering:-webkit-optimize-contrast; /* Safari */ image-rendering:optimize-contrast; /* CSS3 Proposed */ … Read more

How to use debug libraries on ubuntu

TL;DR: Install libwebkitgtk-3.0-0-dbg , then you have the necessary debug symbols. ##For debug symbols, you don’t usually have to install from source. As you know, to get debug symbols for software you’re building yourself, you can run GCC with -g. For software installed through your operating system’s package manager (which includes libwebkitgtk-3.0-0, here), at least … Read more

webkit transform blocking link

After combing through the webkit Bugzilla, I found someone who had the same issue and found a workaround. .face.back { background-color: #125672; -moz-transform: rotateY(180deg); -webkit-transform: rotateY(180deg); } Becomes: .face.back { background-color: #125672; -moz-transform: rotateY(180deg); -webkit-transform: rotateY(180deg) translateZ(1px); } The addition of the translateZ to the transform makes the left side of the element clickable. Here … Read more