1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/navigator.html
2021-10-20 20:00:19 +02:00

17 lines
387 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
var text = "appCodeName=" + navigator.appCodeName + "\n";
text += "appName=" + navigator.appName + "\n";
text += "appVersion=" + navigator.appVersion + "\n";
text += "platform=" + navigator.platform + "\n";
text += "userAgent=" + navigator.userAgent + "\n";
text += "language=" + navigator.language;
window.alert(text);
</script>
</body>
</html>