1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-17 22:09:07 +00:00
Files
UXP/dom/console/tests/test_console_proto.html
T

18 lines
502 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for console.__proto__</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script type="application/javascript">
isnot(Object.getPrototypeOf(console), Object.prototype, "Foo");
is(Object.getPrototypeOf(Object.getPrototypeOf(console)), Object.prototype, "Boo");
</script>
</body>
</html>