https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 617fbe23dc89c0e48f443e4d3a6e918d7bdc3022 authored by Anne van Kesteren on 28 September 2016, 13:24:58 UTC
WIP
Tip revision: 617fbe2
idbfactory_cmp.htm
<!DOCTYPE html>
<meta charset=utf-8>
<title>IDBFactory.cmp() - compared keys return correct value</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=support.js></script>

<script>
    test(function() {
        var greater = window.indexedDB.cmp(2, 1);
        var equal = window.indexedDB.cmp(2, 2);
        var less = window.indexedDB.cmp(1, 2);

        assert_equals(greater, 1, "greater");
        assert_equals(equal, 0, "equal");
        assert_equals(less, -1, "less");
    }, "IDBFactory.cmp()");
</script>

<div id=log></div>
back to top