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 <style type="text/css"> | 6 <style type="text/css"> |
7 body { | 7 body { |
8 background-color: #500; | 8 background-color: #500; |
9 font-family: Helvetica,Arial,sans-serif; | 9 font-family: Helvetica,Arial,sans-serif; |
10 margin: 0; | 10 margin: 0; |
11 } | 11 } |
(...skipping 84 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 |