Revision a78790aeb8417fb65c61a74ca82aea5f1e7c63ff authored by James Graham on 28 March 2014, 16:19:44 UTC, committed by James Graham on 28 March 2014, 16:19:44 UTC
1 parent a4e2797
Raw File
idbfactory_open.htm
<!DOCTYPE html>
<html>
<head>  
    <title>IDBFactory.open() - request has no source</title>
    <script type="text/javascript" src="support.js"></script>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script type="text/javascript">
        var t = async_test(); 
        
        function RunTest() {
            var rqOpen = window.indexedDB.open(databaseName);
            rqOpen.onsuccess = t.step_func( function(event) {
                assert_equals(event.target.source, null, "event.target.source")
                t.done();
            });
            rqOpen.onerror = t.step_func( assert_open_request_error );
        }
        
        add_completion_callback(function() { if(db) db.close(); });
        
        setup(function() {
            var rqDelete = window.indexedDB.deleteDatabase(databaseName);
            rqDelete.onsuccess = t.step_func( RunTest );
        });
    </script>
</head>
<body>
    <div id="log">
    </div>
</body>
</html>
back to top