1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

content / test / data / render-blocking-subframe.html [blame]

<!doctype html>
<head>
<link rel="stylesheet" href="/slow-response">
<script>
  const params = new URLSearchParams(window.location.search);
  if (params.has('red')) {
    document.documentElement.style.background = "red";
  } else {
    document.documentElement.style.background = "blue";
  }
</script>
<style>
  html {
    margin: 0;
  }
</style>
</head>
<body>
</body>