https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 56680d89da3aaf9d56ff2e87b3dcff49981edf43 authored by ffxbld on 10 December 2015, 16:50:42 UTC
Added FENNEC_43_0_RELEASE FENNEC_43_0_BUILD1 tag(s) for changeset deadefaeb38e. DONTBUILD CLOSED TREE a=release
Tip revision: 56680d8
file_certifiedApp.html
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for DataStore just for certified Apps</title>
</head>
<body>
<div id="container"></div>
  <script type="application/javascript;version=1.7">

  function ok(a, msg) {
    alert((a ? 'OK' : 'KO')+ ' ' + msg)
  }

  function finish() {
    alert('DONE');
  }

  ok(!("DataStore" in window), "DataStore is not an available interface");
  ok(!("DataStoreChangeEvent" in window), "DataStore is not an available interface");
  ok(!("getDataStores" in navigator), "DataStore not available");
  finish();
  </script>
</body>
</html>
back to top