script MIME types used in tests

$ for x in {text,application}/{javascript,ecmascript}; do echo $x: `grep "<script.*$x" * | wc -l`; done; echo none: `grep '<script' * | grep -v type | wc -l`
text/javascript: 16
text/ecmascript: 28
application/javascript: 0
application/ecmascript: 3
none: 33

Presumably we want all four of the above RFC4329 types to actually
result in script running.  Should we just have a dedicated test for
that, and then remove type="" attributes that are one of the above from
<script>s in all tests not deliberating testing script types?

-- 
Cameron McCormack ≝ http://mcc.id.au/

Received on Wednesday, 20 October 2010 01:53:29 UTC