1
0
Fork 0
mirror of https://github.com/servo/servo.git synced 2025-08-12 00:45:33 +01:00
servo/tests/html/test-js-console.html
2014-09-08 20:21:42 -06:00

7 lines
213 B
HTML

<script>
console.log('many webdevs');
console.info('put informative');
console.warn('or worrysome', 'or many');
console.error('or even errors');
console.debug('into the debug statements into their JS');
</script>