https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10a0d21c5403e48ddb5372916f76c34b462e18da authored by Philip Jägenstedt on 29 March 2018, 09:12:14 UTC
Invert (fix) the order of `wpt make-hosts-file` instructions
Tip revision: 10a0d21
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