| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>GCM Internals</title> | 5 <title>GCM Internals</title> |
| 6 <if expr="is_android"> | 6 <if expr="is_android"> |
| 7 <meta name="viewport" content="width=device-width"> | 7 <meta name="viewport" content="width=device-width"> |
| 8 </if> | 8 </if> |
| 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 10 <link rel="stylesheet" href="gcm_internals.css"> | 10 <link rel="stylesheet" href="gcm_internals.css"> |
| 11 | 11 |
| 12 <if expr="is_ios"> | 12 <if expr="is_ios"> |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 </tr> | 209 </tr> |
| 210 </thead> | 210 </thead> |
| 211 <tbody id="send-info"> | 211 <tbody id="send-info"> |
| 212 </tbody> | 212 </tbody> |
| 213 </table> | 213 </table> |
| 214 </if> | 214 </if> |
| 215 | 215 |
| 216 <script src="chrome://resources/js/i18n_template.js"></script> | 216 <script src="chrome://resources/js/i18n_template.js"></script> |
| 217 </body> | 217 </body> |
| 218 </html> | 218 </html> |
| OLD | NEW |