summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/battery-status/restricted-level-precision.https.html
blob: a66a22cecf9b884819bd9847f30752667fc025ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/test-only-api.js"></script>
<script src="resources/battery-status-helpers.js"></script>
</head>
<body>
<script>
battery_status_test(async (t, mockBatteryMonitor) => {
  const levelFullPrecision = 0.556789;
  const levelRounded = 0.56;

  mockBatteryMonitor.setBatteryStatus(false, 10, 20, levelFullPrecision);

  const battery = await navigator.getBattery();
  assert_equals(battery.level, levelRounded);
}, 'battery level is reported with restricted precision');
</script>
</body>
</html>