16f720a4cc
BUG=https://code.google.com/p/dart/issues/detail?id=20305 R=sra@google.com Review URL: https://codereview.chromium.org//437733002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38814 260f80e4-7a28-3924-810f-c04153c831b5
25 lines
686 B
HTML
25 lines
686 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="dart.unittest" content="full-stack-traces">
|
|
<title> null test </title>
|
|
<style>
|
|
.unittest-table { font-family:monospace; border:1px; }
|
|
.unittest-pass { background: #6b3;}
|
|
.unittest-fail { background: #d55;}
|
|
.unittest-error { background: #a11;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1> Running null_test </h1>
|
|
<script>
|
|
function isUndefined(o) { return o === undefined; }
|
|
function isNull(o) { return o === null; }
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="/root_dart/tools/testing/dart/test_controller.js"></script>
|
|
%TEST_SCRIPTS%
|
|
</body>
|
|
</html>
|