| 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 <title i18n-content="title"> | 4 <title i18n-content="title"> |
| 5 </title> | 5 </title> |
| 6 <style> | 6 <style> |
| 7 html { | 7 html { |
| 8 height: 100%; | 8 height: 100%; |
| 9 } | 9 } |
| 10 body { | 10 body { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 document.addEventListener('DOMContentLoaded', function() { | 49 document.addEventListener('DOMContentLoaded', function() { |
| 50 var showDelayTime = localStrings.getString('show_delay_time'); | 50 var showDelayTime = localStrings.getString('show_delay_time'); |
| 51 var totalWaitTime = localStrings.getString('total_wait_time'); | 51 var totalWaitTime = localStrings.getString('total_wait_time'); |
| 52 window.setTimeout(showPage, showDelayTime); | 52 window.setTimeout(showPage, showDelayTime); |
| 53 window.setTimeout(forceLoad, totalWaitTime); | 53 window.setTimeout(forceLoad, totalWaitTime); |
| 54 }); | 54 }); |
| 55 </script> | 55 </script> |
| 56 | 56 |
| 57 <body oncontextmenu="return false;"> | 57 <body oncontextmenu="return false;"> |
| 58 <div class="header" i18n-content="heading"> | 58 <div class="header" i18n-content="heading" id="mgs"> |
| 59 </div> | 59 </div> |
| 60 </body> | 60 </body> |
| 61 </html> | 61 </html> |
| OLD | NEW |