summaryrefslogtreecommitdiffstats
path: root/kjsembed/tools/coverage/unsupported.js
blob: 331849e2bfb4969dc9695f5e1f86b36ccc06bb42 (plain)
1
2
3
4
5
6
7
8
9
10
11

var line = readLine();
while ( line != null ) {
      line = line.replace( /^ */g, '' );      
      line = line.replace( / *$/g, '' );      

      if ( !Factory.isSupported( line ) )
         print( line + ' MISSING\n' );

      line = readLine();
}