summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/resources/viewport-measurement.html
blob: 2ac9043af742a05dd6cad28833fb4bbc25b2fe90 (plain)
1
2
3
4
5
6
7
8
<!DOCTYPE html>
<script>
(async () => {
  const response = await fetch("viewport.py");
  const body = await response.text();
  parent.postMessage(body, "*");
})();
</script>