https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e2456a73dc68ea5276e733674d81b62b8ec6dd8c authored by Aryeh Gregor on 20 April 2016, 18:21:43 UTC
Add self to html/OWNERS
Tip revision: e2456a7
URL-createObjectURL-null.html
<!doctype html>
<html>
<head>
  <meta charset='utf-8'>
  <title>URL.createObjectURL(null)</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function() {
    assert_throws(new TypeError(), function() {
        window.URL.createObjectURL(null);
    });
}, "URL.createObjectURL(null)");
</script>
</body>
</html>
back to top