Is there any case where application/javascript (as a MIME type for Javascript) won't work?

1.1k Views Asked by At

The question is text/javascript works across the board but application/[x-]javascript is correct. Is there any reason not to use text/javascript?

Background:

I've discovered an interesting corner case where Chrome will refuse to execute Javascript passed as application/x-javascript or application/javascript passed as a utf-8 encoded data url (so data:application/x-javascript;charset=utf-8,...)

Specifically, Chrome allows:

data:text/javascript; charset=utf-8,....
data:application/javascript; charset=utf-8;base64,....
data:application/x-javascript; charset=utf-8;base64,.....

But explodes on:

data:application/x-javascript; charset=utf-8,.....
data:application/javascript; charset=utf-8,.....

Based on googling, it seems as though RFC 4329 dictates application/javascript as the standard, and it works in this case, but so does the (now deprecated) text/javascript.

Chasing down RFC2397, RFC2045, RFC2046 didn't show a definitive answer.

1

There are 1 best solutions below

0
On

First, note that I edited the question after realizing Chrome was broken for application/javascript as well as x-javascript.

It looks like it's a straight-out bug in Chrome. It doesn't refuse to execute the utf-8 "encoded" javascript, it instead collapses spaces causing, for example, any definition of a named function to become incorrect, e.g. function foo(){} becomes functionfoo(){}. This does not happen for text/javascript or base64 encoded uris.

So, the answer is to use text/javascript.

As an aside: it seems kind of precious to insist on deprecating text/javascript while retaining text/css.