OLD | NEW |
| 1 <!-- |
| 2 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. |
| 5 --> |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 6 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 7 "http://www.w3.org/TR/html4/loose.dtd"> |
3 <html> | 8 <html> |
4 <head> | 9 <head> |
| 10 <!-- We have to set some default title, or chrome will use the page name. |
| 11 -- As soon as the i18n'd strings are loaded we replace it with the correct |
| 12 -- string. Until then, use an invisible non-whitespace character. |
| 13 --> |
| 14 <title></title> |
5 <link rel="icon" type="image/png" href="images/media/audio_player.png"/> | 15 <link rel="icon" type="image/png" href="images/media/audio_player.png"/> |
6 <link rel="stylesheet" type="text/css" href="css/media_controls.css"/> | 16 <link rel="stylesheet" type="text/css" href="css/media_controls.css"/> |
7 <link rel="stylesheet" type="text/css" href="css/audio_player.css"/> | 17 <link rel="stylesheet" type="text/css" href="css/audio_player.css"/> |
8 | 18 |
9 <script src="js/media/audio_player.js"></script> | 19 <script src="js/media/mediaplayer_scripts.js"></script> |
10 <script src="js/media/media_controls.js"></script> | 20 |
11 <script src="js/metadata/metadata_provider.js"></script> | 21 <if expr="0"> |
| 22 <!-- This file has not been flattened, load individual scripts. |
| 23 Keep the list in sync with mediaplayer_scripts.js. --> |
| 24 <script src="js/media/audio_player.js"></script> |
| 25 <script src="js/media/media_controls.js"></script> |
| 26 <script src="js/metadata/metadata_provider.js"></script> |
| 27 </if> |
12 </head> | 28 </head> |
13 <body> | 29 <body> |
14 <div class="audio-player"></div> | 30 <div class="audio-player"></div> |
15 </body> | 31 </body> |
16 </html> | 32 </html> |
OLD | NEW |