blob: a4177dd846be89c4f9118b1ba3ef9a72eb2a0ecf [file] [log] [blame]
hitoshi9dcf2232014-04-01 04:29:481<!doctype html>
2<html>
3<head>
4 <meta charset='utf-8'>
hitoshia4fd5842014-04-11 18:40:125 <title>URL.createObjectURL(null)</title>
hitoshi9dcf2232014-04-01 04:29:486 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8</head>
9<body>
hitoshi9dcf2232014-04-01 04:29:4810<div id="log"></div>
hitoshi9dcf2232014-04-01 04:29:4811<script>
12test(function() {
Hitoshi Uchidacdc56152014-06-19 21:25:2813 assert_throws(new TypeError(), function() {
14 window.URL.createObjectURL(null);
15 });
hitoshia4fd5842014-04-11 18:40:1216}, "URL.createObjectURL(null)");
hitoshi9dcf2232014-04-01 04:29:4817</script>
18</body>
19</html>