OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html><!-- TODO(dbeam): RTL? --> | 2 <html><!-- TODO(dbeam): RTL? --> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
6 <style type="text/css"> | 7 <style type="text/css"> |
7 body { | 8 body { |
8 background-color: #500; | 9 background-color: #500; |
9 font-family: Helvetica,Arial,sans-serif; | |
10 margin: 0; | 10 margin: 0; |
11 } | 11 } |
12 .background { | 12 .background { |
13 height: 100%; | 13 height: 100%; |
14 position: absolute; | 14 position: absolute; |
15 width: 100%; | 15 width: 100%; |
16 } | 16 } |
17 .cell { | 17 .cell { |
18 padding: 40px; | 18 padding: 40px; |
19 } | 19 } |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 <input type="button" i18n-values="value:ok" name="ok" | 96 <input type="button" i18n-values="value:ok" name="ok" |
97 class="proceedbutton" onclick="sendCommand(getChecked());"> | 97 class="proceedbutton" onclick="sendCommand(getChecked());"> |
98 <input type="button" i18n-values="value:cancel" name="cancel" | 98 <input type="button" i18n-values="value:cancel" name="cancel" |
99 onclick="sendCommand(0);"> | 99 onclick="sendCommand(0);"> |
100 </form> | 100 </form> |
101 </div> | 101 </div> |
102 </td> | 102 </td> |
103 </table> | 103 </table> |
104 </body> | 104 </body> |
105 </html> | 105 </html> |
OLD | NEW |