XHTMLDBG HTML 5 Testsuite

Your Browser supports "sessionStorage"?
Your Browser supports "localStorage"?
Your Browser supports HTML v5 WebSQL Objects?
Web Storage - W3C Indexed Database API - using HTML5 IndexedDB - Back to Testpage
<script type="text/javascript">
    /* <![CDATA[ */
      function handleCallback(transaction,resultSet)
      { debug(this.caller,transaction,resultSet); }
      function handleError(transaction,resultSet)
      { error(this.caller,transaction,resultSet); }
      function indexedDBCheck()
      {
         if (!window.indexedDB)
         {
            if (window.mozIndexedDB) {
               return true;
            } else if (window.webkitIndexedDB) {
               return true;
            } else if (window.msIndexedDB) {
               return true;
            } else {
               return false;
            }
         }
         return true;
      }
      if (window.indexedDBCheck()) {
         document.write('<strong>YES<\/strong>');
      } else if (openDatabase) {
         document.write('<strong>Deprecated openDatabase Support :-(<\/strong>');
      } else {
         document.write('<strong>NO<\/strong>');
      }
    /* ]]> */
</script>
Back to Testpage