Files
servo/tests/html/test-js-alert.html
Jack Moffitt c6ab60dbfc Cargoify servo
2014-09-08 20:21:42 -06:00

9 lines
119 B
HTML

<script>
function output (text)
{
window.alert(text);
}
output("Opossums have pouches like kangaroos");
</script>