The proposed URL for checking websites, (http://cssprefix.com/[URI]) doesn't work with local web pages, either with a local webserver or plain file://.
This means that the developer needs to:
Publish the website with incomplete CSS prefixes.
Run the website through CSS Prefix.
Download the updated code.
Update their CSS.
Re-publish the website.
This is a sub-optimal workflow. If CSS Prefix supports local web pages, the first deploy of the website could already have all the needed CSS prefixes.
Possible solution
I believe there are three ways to do this:
Pasting the code to CSS Prefix
Uploading the code to CSS Prefix (drag & drop would be nice)
Developing browser extensions.
Browser extensions are able to do cross-domain requests, but I'm not sure if they can make requests from file:// websites.
Problem
The proposed URL for checking websites, (
http://cssprefix.com/[URI]
) doesn't work with local web pages, either with a local webserver or plainfile://
.This means that the developer needs to:
This is a sub-optimal workflow. If CSS Prefix supports local web pages, the first deploy of the website could already have all the needed CSS prefixes.
Possible solution
I believe there are three ways to do this:
Browser extensions are able to do cross-domain requests, but I'm not sure if they can make requests from
file://
websites.