summaryrefslogtreecommitdiffstats
path: root/dom/console/tests/test_console_proto.html
blob: 3e9461bade547f933bc42152c4873428e43ab615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for console.__proto__</title>
  <script 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>