blob: dca4ff7f8920f20a66a5a06c7f962d426a3f2798 [file] [log] [blame]
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('Tests the optional properties of DeviceProximityEvent. Each property should be null if not set, or set to null or undefined.');
var event;
evalAndLog("event = document.createEvent('DeviceProximityEvent')");
shouldBeTrue("event.value == Number.POSITIVE_INFINITY");
shouldBeTrue("event.min == Number.NEGATIVE_INFINITY");
shouldBeTrue("event.max == Number.POSITIVE_INFINITY");
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>