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