chromium/chrome/test/data/extensions/api_test/executescript/http204/navigate_to_204.html

<!-- html tag = document_start script -->
<html>
<body>
<script>
  window.onload = function() {
    // Navigate to a page that replies with 204 No Content.
    var a = document.createElement('a');
    a.href = '../../../../page204.html';
    if (location.search) {
      a.hostname = location.search.slice(1);
    }
    location.href = a.href;
  }
</script>
</body>
</html>