| 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 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 6 <style> | 7 <style> |
| 7 html { | 8 html { |
| 8 height: 100%; | 9 height: 100%; |
| 9 } | 10 } |
| 10 body { | 11 body { |
| 11 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| 12 background: white; | 13 background: white; |
| 13 color: #000; | 14 color: #000; |
| 14 display: -webkit-box; | 15 display: -webkit-box; |
| 15 font-family: arial, sans-serif; | |
| 16 height: 100%; | 16 height: 100%; |
| 17 margin: 0; | 17 margin: 0; |
| 18 padding: 0; | 18 padding: 0; |
| 19 visibility: hidden; | 19 visibility: hidden; |
| 20 width: 100%; | 20 width: 100%; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .header { | 23 .header { |
| 24 font-family: Sans-serif; | |
| 25 padding: 3px; | 24 padding: 3px; |
| 26 width: 80%; | 25 width: 80%; |
| 27 } | 26 } |
| 28 </style> | 27 </style> |
| 29 | 28 |
| 30 <script> | 29 <script> |
| 31 | 30 |
| 32 function sendCommand(cmd) { | 31 function sendCommand(cmd) { |
| 33 window.domAutomationController.setAutomationId(1); | 32 window.domAutomationController.setAutomationId(1); |
| 34 window.domAutomationController.send(cmd); | 33 window.domAutomationController.send(cmd); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 50 window.setTimeout(showPage, showDelayTime); | 49 window.setTimeout(showPage, showDelayTime); |
| 51 window.setTimeout(forceLoad, totalWaitTime); | 50 window.setTimeout(forceLoad, totalWaitTime); |
| 52 }); | 51 }); |
| 53 </script> | 52 </script> |
| 54 | 53 |
| 55 <body oncontextmenu="return false;"> | 54 <body oncontextmenu="return false;"> |
| 56 <div class="header" i18n-content="heading" id="mgs"> | 55 <div class="header" i18n-content="heading" id="mgs"> |
| 57 </div> | 56 </div> |
| 58 </body> | 57 </body> |
| 59 </html> | 58 </html> |
| OLD | NEW |