Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / filesystem / filesystem-no-callback-null-ptr-crash.html
blob78ba6b9feab79fabb758514996abb927bb5e78bc
1 <!--
2 http://code.google.com/p/chromium/issues/detail?id=63204
3 https://bugs.webkit.org/show_bug.cgi?id=49539
4 -->
5 <div id="log">FAIL</div>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 if (window.webkitRequestFileSystem) {
10 // These two calls should throw an exception but should NOT cause a NULL pointer crash:
11 webkitResolveLocalFileSystemURL('', function() {});
12 try {
13 webkitRequestFileSystem(TEMPORARY, 100);
15 catch(e) {
16 document.getElementById('log').innerHTML = "PASS";
19 </script>