| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html id="template-root" i18n-values="dir:textdirection"> | 2 <html id="template-root" i18n-values="dir:textdirection"> |
| 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="malware_block_v2.css"> | 6 <link rel="stylesheet" href="malware_block_v2.css"> |
| 7 <script src="../shared/js/util.js"></script> | 7 <script src="../shared/js/util.js"></script> |
| 8 <script src="malware_block_v2.js"></script> | 8 <script src="malware_block_v2.js"></script> |
| 9 </head> | 9 </head> |
| 10 <body i18n-values=".style.fontFamily:fontfamily"> | 10 <body i18n-values=".style.fontFamily:fontfamily"> |
| 11 <table width="100%" cellspacing="0" cellpadding="0"> | 11 <table width="100%" cellspacing="0" cellpadding="0"> |
| 12 <td class="cell" valign="middle" align="center"> | 12 <td class="cell" valign="middle" align="center"> |
| 13 <div class="box"> | 13 <div class="box"> |
| 14 <div> | 14 <div> |
| 15 <img id="logo" alt=""> | 15 <img id="logo" alt=""> |
| 16 </div> | 16 </div> |
| 17 | 17 |
| 18 <img id="malware-icon" class="float" jsdisplay="isMainFrame" | 18 <img id="malware-icon" class="float icon" |
| 19 jsdisplay="!isPhishing && isMainFrame" |
| 19 src="images/malware_icon_v2.png" alt="" /> | 20 src="images/malware_icon_v2.png" alt="" /> |
| 20 <img id="subresource-icon" class="float" jsdisplay="!isMainFrame" | 21 <img id="subresource-icon" class="float icon" |
| 22 jsdisplay="!isPhishing && !isMainFrame" |
| 21 src="images/subresource_icon.png" alt="" /> | 23 src="images/subresource_icon.png" alt="" /> |
| 24 <img id="phishing-icon" class="float icon" jsdisplay="isPhishing" |
| 25 src="images/phishing_icon.png" alt="" /> |
| 22 | 26 |
| 23 <div id=headline i18n-content="headLine"></div> | 27 <div id=headline i18n-content="headLine"></div> |
| 24 <div class="main" i18n-content="description1"></div> | 28 <div class="main" i18n-content="description1"></div> |
| 25 <div class="main" i18n-content="description2"></div> | 29 <div class="main" i18n-content="description2"></div> |
| 26 <div class="main"> | 30 <div class="main"> |
| 27 <span i18n-content="description3"></span> | 31 <span i18n-content="description3"></span> |
| 28 <a id="learn-more-link" href="#" i18n-content="learnMore"></a> | 32 <a id="learn-more-link" href="#" i18n-content="learnMore"></a> |
| 29 </div> | 33 </div> |
| 30 | 34 |
| 31 <div class="clear"></div> | 35 <div class="clear"></div> |
| 32 | 36 |
| 33 <div class="submission"> | 37 <div class="submission"> |
| 34 <button id="back" i18n-content="back_button"></button> | 38 <button id="back" i18n-content="back_button"></button> |
| 35 | 39 |
| 36 <span id="see-more-contents" hidden> | 40 <span id="see-more-contents" hidden> |
| 37 <span class="advanced"> | 41 <span class="advanced"> |
| 38 <a id="show-diagnostic-link" href="#" i18n-content="details"></a> | 42 <a id="show-diagnostic-link" href="#" i18n-content="details"></a> |
| 43 <a id="report-error-link" href="#" |
| 44 i18n-content="report_error"></a> |
| 39 </span> | 45 </span> |
| 40 <span id="proceed-span" class="advanced" hidden> | 46 <span id="proceed-span" class="advanced" hidden> |
| 41 <a id="proceed" href="#" i18n-content="proceed"></a> | 47 <a id="proceed" href="#" i18n-content="proceed"></a> |
| 42 </span> | 48 </span> |
| 43 </span> | 49 </span> |
| 44 | 50 |
| 45 <a id="see-more-link" class="advanced" href="#"> | 51 <a id="see-more-link" class="advanced" href="#"> |
| 46 <span id="see-more-text" i18n-content="seeMore"></span> | 52 <span id="see-more-text" i18n-content="seeMore"></span> |
| 47 <span id="see-less-text" hidden>«</span> | 53 <span id="see-less-text" hidden>«</span> |
| 48 </a> | 54 </a> |
| 49 </div> | 55 </div> |
| 50 | 56 |
| 51 <footer jsdisplay="displaycheckbox"> | 57 <footer jsdisplay="displaycheckbox"> |
| 52 <hr> | 58 <hr> |
| 53 | 59 |
| 54 <div class="checkbox"> | 60 <div class="checkbox"> |
| 55 <label> | 61 <label> |
| 56 <input id="check-report" type="checkbox" | 62 <input id="check-report" type="checkbox" |
| 57 jsvalues=".checked:boxchecked"> | 63 jsvalues=".checked:boxchecked"> |
| 58 <span i18n-values=".innerHTML:confirm_text"></span> | 64 <span i18n-values=".innerHTML:confirm_text"></span> |
| 59 </label> | 65 </label> |
| 60 </div> | 66 </div> |
| 61 </footer> | 67 </footer> |
| 62 </div> | 68 </div> |
| 63 </td> | 69 </td> |
| 64 </table> | 70 </table> |
| 65 </body> | 71 </body> |
| 66 </html> | 72 </html> |
| 67 | 73 |
| OLD | NEW |