| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>Media Player</title> | 5 <title>Media Player</title> |
| 6 <style type="text/css"> | 6 <style type="text/css"> |
| 7 | 7 |
| 8 body { | 8 body { |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 background: black; | 10 background: black; |
| 11 -webkit-transform: translateZ(0); |
| 11 } | 12 } |
| 12 | 13 |
| 13 .error { | 14 .error { |
| 14 left: 0; | 15 left: 0; |
| 15 right: 0; | 16 right: 0; |
| 16 color: white; | 17 color: white; |
| 17 bottom: 38px; | 18 bottom: 38px; |
| 18 position: absolute; | 19 position: absolute; |
| 19 } | 20 } |
| 20 | 21 |
| (...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 <body onload='load();' onselectstart='return false'> | 885 <body onload='load();' onselectstart='return false'> |
| 885 <div id='error' class='error'></div> | 886 <div id='error' class='error'></div> |
| 886 <div id='title' class='audiotitle'></div> | 887 <div id='title' class='audiotitle'></div> |
| 887 <div id='glow' class='glow'></div> | 888 <div id='glow' class='glow'></div> |
| 888 <div class='playercontrolsbox'> | 889 <div class='playercontrolsbox'> |
| 889 <div id='playercontrols'> | 890 <div id='playercontrols'> |
| 890 </div> | 891 </div> |
| 891 </div> | 892 </div> |
| 892 </body> | 893 </body> |
| 893 </html> | 894 </html> |
| OLD | NEW |