Chromium Code Reviews| Index: chrome/browser/resources/translate_internals/index.html |
| diff --git a/chrome/browser/resources/translate_internals/index.html b/chrome/browser/resources/translate_internals/index.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..23cc95658eff9860e58c3af20e97409a728c43f7 |
| --- /dev/null |
| +++ b/chrome/browser/resources/translate_internals/index.html |
| @@ -0,0 +1,41 @@ |
| +<!DOCTYPE HTML> |
|
Evan Stade
2013/04/16 20:07:19
I don't think index.{html,js,css} is the best name
hajimehoshi
2013/04/17 02:14:40
Done.
|
| +<html i18n-values="dir:textdirection"> |
| +<!-- |
| +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> |
| + <meta charset="utf-8"> |
| + <title>Translate Internals</title> |
| + <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
| + <link rel="stylesheet" href="./index.css"> |
| + <script src="chrome://resources/js/util.js"></script> |
| + <script src="chrome://resources/js/cr.js"></script> |
| + <script src="chrome://resources/js/i18n_template.js"></script> |
| + <script src="chrome://resources/js/cr/event_target.js"></script> |
| + <script src="chrome://resources/js/cr/ui.js"></script> |
| + <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
| + <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
| + <script src="./index.js"></script> |
| + </head> |
| + |
| + <body> |
| + |
| + <tabbox> |
| + <tabs> |
| + <tab>Prefs</tab> |
| + </tabs> |
| + <tabpanels> |
| + |
| + <tabpanel id="tabpanel-prefs"> |
| + <h2>Prefs</h2> |
| + <p></p> |
| + </tabpanel> |
| + |
| + </tabpanels> |
| + </tabbox> |
| + |
| + </body> |
| + |
| +</html> |