chromium/third_party/blink/web_tests/fast/filesystem/filesystem-no-callback-null-ptr-crash.html

<!--
  http://code.google.com/p/chromium/issues/detail?id=63204
  https://bugs.webkit.org/show_bug.cgi?id=49539
-->
<div id="log">FAIL</div>
<script>
  if (window.testRunner)
      testRunner.dumpAsText();
  if (window.webkitRequestFileSystem) {
      // These two calls should throw an exception but should NOT cause a NULL pointer crash:
      webkitResolveLocalFileSystemURL('', function() {});
      try {
          webkitRequestFileSystem(TEMPORARY, 100);
      }
      catch(e) {
          document.getElementById('log').innerHTML = "PASS";
      }
  }
</script>