- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / translate / update_location_at_onload.html
1 <html>
2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <head>
8   <title>update_location_at_onload.html</title>
9   <meta http-equiv="content-language" content="fr">
10   <script>
11     function updateLocation() {
12       var path = location.pathname.split("/");
13       path[path.length - 1] = "update_location_next.html";
14       location.pathname = path.join("/");
15     }
16   </script>
17 </head>
18 <body onload="updateLocation();">
19   <div>bonjour Chrome Translate.</div>
20 </body>
21 </html>