blob: 8f2ca3e51cd90450a24e6db811dc1cf301f4a252 [file] [log] [blame]
<html>
<!--
Copyright 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<title>update_location_at_onload.html</title>
<meta http-equiv="content-language" content="fr">
<script>
function updateLocation() {
var path = location.pathname.split("/");
path[path.length - 1] = "update_location_next.html";
location.pathname = path.join("/");
}
</script>
</head>
<body onload="updateLocation();">
<div>bonjour Chrome Translate.</div>
</body>
</html>