On the Polymer site under Creating elements there is a note that says
You must run your app from a web server for the HTML Imports polyfill to work properly. This requirement goes away when the API is available natively.
So lets say for an offline op where I am just opening an html file via open file or double clicking on it. The html file is just a simple custom element that imports polymer.html
When I run this I get a CORS error
Imported resource from origin 'file://' has been blocked from loading by Cross-Origin Resource Sharing policy: Received an invalid response. Origin 'null' is therefore not allowed access. el.html:1
Uncaught ReferenceError: Polymer is not defined
Is this the correct behavior since it is natively supported now in latest chrome according to above statement it should work, or is cors another issue. I understand CORS and how to handle it when using a web server but not when just opening an html file via file://
Thanks,
Dan