| Index: chrome/test/data/translate/update_location_at_onload.html
|
| diff --git a/chrome/test/data/translate/fr_test.html b/chrome/test/data/translate/update_location_at_onload.html
|
| similarity index 50%
|
| copy from chrome/test/data/translate/fr_test.html
|
| copy to chrome/test/data/translate/update_location_at_onload.html
|
| index c405e6d71903571ce1235222b753d52e3e5e5ac3..8f2ca3e51cd90450a24e6db811dc1cf301f4a252 100644
|
| --- a/chrome/test/data/translate/fr_test.html
|
| +++ b/chrome/test/data/translate/update_location_at_onload.html
|
| @@ -5,11 +5,17 @@ Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file.
|
| -->
|
| <head>
|
| - <title>fr_test.html: check if Chrome Translate works</title>
|
| + <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>
|
| +<body onload="updateLocation();">
|
| <div>bonjour Chrome Translate.</div>
|
| - <div id="log"></div>
|
| </body>
|
| </html>
|
|
|