chromium/chrome/test/data/translate/refresh_meta_tag_at_onload.html

<html>
<!--
Copyright 2013 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
  <title>refresh_meta_tag_at_onload.html</title>
  <meta http-equiv="content-language" content="fr">
  <script>
    function injectRefreshMetaTag() {
      var element = document.createElement("meta");
      element.setAttribute("http-equiv", "refresh");
      element.setAttribute("content", "1;refresh_meta_tag_next.html");
      document.getElementsByTagName("head")[0].appendChild(element);
    }
  </script>
</head>
<body onload="injectRefreshMetaTag();">
  <div>bonjour Chrome Translate.</div>
  <div id="log"></div>
</body>
</html>