1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34

content / test / data / net_info.html [blame]

<html>
<head></head>
<script>

function getType() {
  return navigator.connection.type;
}

function getDownlinkMax() {
  return navigator.connection.downlinkMax;
}

function getOnLine() {
  return navigator.onLine;
}

function getEffectiveType() {
  return navigator.connection.effectiveType;
}

function getRtt() {
  return navigator.connection.rtt;
}

function getDownlink() {
  return navigator.connection.downlink;
}

function getSaveData() {
  return navigator.connection.saveData;
}

</script>
</html>