https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e05234ad84e251d939a0b71754b23b6b5392ad8b authored by moz-wptsync-bot on 14 March 2018, 18:17:10 UTC
Make slot assignment sound with layout after bug 1409975.
Tip revision: e05234a
device-memory.https.any.js
test(function() {
    assert_equals(typeof navigator.deviceMemory, "number",
        "navigator.deviceMemory returns a number");
    assert_true(navigator.deviceMemory >= 0,
        "navigator.deviceMemory returns a positive value");
    assert_true([0.25, 0.5, 1, 2, 4, 8].includes(navigator.deviceMemory),
        "navigator.deviceMemory returns a power of 2 between 0.25 and 8");
}, "navigator.deviceMemory is a positive number, a power of 2, between 0.25 and 8");
back to top