| 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 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="labsTitle"></title> | |
| 6 <style> | 5 <style> |
| 7 body { | 6 body { |
| 8 margin: 10px; | 7 margin: 10px; |
| 9 min-width: 47em; | 8 min-width: 47em; |
| 10 } | 9 } |
| 11 | 10 |
| 12 a { | 11 a { |
| 13 color: blue; | 12 color: blue; |
| 14 font-size: 103%; | 13 font-size: 103%; |
| 15 } | 14 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 45 padding-left: 0; | 44 padding-left: 0; |
| 46 } | 45 } |
| 47 | 46 |
| 48 h1 { | 47 h1 { |
| 49 font-size: 156%; | 48 font-size: 156%; |
| 50 font-weight: bold; | 49 font-weight: bold; |
| 51 padding: 0; | 50 padding: 0; |
| 52 margin: 0; | 51 margin: 0; |
| 53 } | 52 } |
| 54 | 53 |
| 55 div.blurb { | 54 #blurb-container { |
| 56 padding-bottom: 1.5em; | 55 padding-bottom: 1.5em; |
| 56 font-size: 120%; |
| 57 } |
| 58 |
| 59 #blurb-warning { |
| 60 color: red; |
| 61 font-weight: bold; |
| 57 } | 62 } |
| 58 | 63 |
| 59 div.content { | 64 div.content { |
| 60 font-size: 88%; | 65 font-size: 88%; |
| 61 margin-top: 5px; | 66 margin-top: 5px; |
| 62 } | 67 } |
| 63 | 68 |
| 64 .section-header { | 69 .section-header { |
| 65 background: #ebeff9; | 70 background: #ebeff9; |
| 66 border-top: 1px solid #b5c7de; | 71 border-top: 1px solid #b5c7de; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 // Get data and have it displayed upon loading. | 234 // Get data and have it displayed upon loading. |
| 230 document.addEventListener('DOMContentLoaded', requestLabsExperimentsData); | 235 document.addEventListener('DOMContentLoaded', requestLabsExperimentsData); |
| 231 | 236 |
| 232 </script> | 237 </script> |
| 233 </head> | 238 </head> |
| 234 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 239 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 235 <div id="body-container" style="visibility:hidden"> | 240 <div id="body-container" style="visibility:hidden"> |
| 236 | 241 |
| 237 <div id="header"><h1 i18n-content="labsLongTitle">TITLE</h1></div> | 242 <div id="header"><h1 i18n-content="labsLongTitle">TITLE</h1></div> |
| 238 | 243 |
| 239 <div class="blurb" i18n-content="labsBlurb">BLURB</div> | 244 <div id="blurb-container"> |
| 245 <span id="blurb-warning" i18n-content="flagsWarningHeader">WARNING</span> |
| 246 <span i18n-content="labsBlurb">WARNING TEXT</span> |
| 247 </div> |
| 240 | 248 |
| 241 <div id="labsExperimentTemplate"> | 249 <div id="labsExperimentTemplate"> |
| 242 | 250 |
| 243 <div id="container" class="vbox-container"> | 251 <div id="container" class="vbox-container"> |
| 244 <div id="top" class="wbox"> | 252 <div id="top" class="wbox"> |
| 245 | 253 |
| 246 <div class="section-header"> | 254 <div class="section-header"> |
| 247 <table cellpadding="0" cellspacing="0"><tr valign="center"> | 255 <table cellpadding="0" cellspacing="0"><tr valign="center"> |
| 248 <td> | 256 <td> |
| 249 <span class="section-header-title" i18n-content="labsTableTitle" | 257 <span class="section-header-title" i18n-content="labsTableTitle" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 <div i18n-content="labsRestartNotice">NEEDS_RESTART</div> | 312 <div i18n-content="labsRestartNotice">NEEDS_RESTART</div> |
| 305 <button type="button" | 313 <button type="button" |
| 306 onclick="restartBrowser();" | 314 onclick="restartBrowser();" |
| 307 i18n-content="labsRestartButton">RESTART</button> | 315 i18n-content="labsRestartButton">RESTART</button> |
| 308 </div> | 316 </div> |
| 309 </div> | 317 </div> |
| 310 </div> | 318 </div> |
| 311 </div> | 319 </div> |
| 312 </body> | 320 </body> |
| 313 </html> | 321 </html> |
| OLD | NEW |