Chromium Code Reviews| Index: chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.html |
| diff --git a/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.html b/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..46e5a2128a5a156bb308fcadc7a8e206e5356b1d |
| --- /dev/null |
| +++ b/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<!-- Copyright 2012 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. |
|
Evan Stade
2012/12/14 01:09:25
we seem to have a different style (or no header at
Shishir
2012/12/14 03:46:52
I saw them in some, and copied this one from: net
|
| +--> |
| +<head> |
| + <script src='chrome://resources/js/util.js'></script> |
| + <script src='chrome://local-omnibox-popup/local_omnibox_popup.js'></script> |
| + <link rel='stylesheet' |
| + href='chrome://local-omnibox-popup/local_omnibox_popup.css'></link> |
|
Evan Stade
2012/12/14 01:09:25
don't align attributes, just indent 4 spaces
Shishir
2012/12/14 03:46:52
Done.
|
| +</head> |
| +<body> |
| + <div id='suggestionsBox'> |
|
Evan Stade
2012/12/14 01:09:25
nit: double quotes in html, single quotes in css a
Shishir
2012/12/14 03:46:52
Done.
|
| + </div> |
|
Evan Stade
2012/12/14 01:09:25
nit: you can put </div> on same line as <div>
Shishir
2012/12/14 03:46:52
Done.
|
| +</body> |
| +</html> |