blob: 74dc4cd3960a5e02a4fce4cd428a57e3e3b9071d [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../fast/js/resources/js-test-pre.js"></script>
</head>
<body>
<script type="text/javascript">
shouldBeNull('webkitIntent');
webkitIntent = "foo";
shouldBeEqualToString("webkitIntent", "foo");
shouldBeEqualToString("window.webkitIntent", "foo");
webkitIntent = null;
shouldBeNull('webkitIntent');
webkitIntent = "bar";
shouldBeEqualToString("webkitIntent", "bar");
</script>
<script src="../fast/js/resources/js-test-post.js"></script>
</body>
</html>