Index: chrome/browser/resources/ssl/blocking.html |
diff --git a/chrome/browser/resources/ssl/blocking.html b/chrome/browser/resources/ssl/blocking.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..35f0a893f45f46bb82dd91e1604c003b06562dc3 |
--- /dev/null |
+++ b/chrome/browser/resources/ssl/blocking.html |
@@ -0,0 +1,61 @@ |
+<!DOCTYPE html> |
+<html i18n-values="dir:textDirection"> |
+<head> |
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, |
+ maximum-scale=1.0, user-scalable=no"> |
+ <title i18n-content="title"></title> |
+ <link rel="stylesheet" href="../../../renderer/resources/neterror.css"> |
+ <link rel="stylesheet" href="blocking.css"> |
+ <script src="../../../../ui/webui/resources/js/util.js"></script> |
+ <script src="../../../renderer/resources/neterror.js"></script> |
+ <script src="blocking.js"></script> |
+</head> |
+<body id="t"> |
Patrick Dubroy
2013/09/12 13:12:26
Since this looks almost identical to neterror.html
felt
2013/09/16 00:05:21
They differ several ways:
- This version needs di
Patrick Dubroy
2013/09/18 15:01:35
Did someone on the UX team specifically say they s
felt
2013/10/18 05:53:12
Yes. First, this warning has a larger icon (which
|
+ <div id="main-frame-error"> |
+ <div id="box"> |
+ <div id="content-top"> |
+ <h1> |
+ <div> |
+ <img class="icon" id="icon-lock"> |
+ </div> |
+ <span i18n-content="headline"></span> |
+ </h1> |
+ <!-- Outer and inner divs are needed both for margins and sizing. --> |
+ <div class="outer-text"> |
+ <div class="inner-text"> |
+ <div class="explanation-par"> |
Patrick Dubroy
2013/09/12 13:12:26
Is there a reason you can't have a single element
felt
2013/09/16 00:05:21
Done.
|
+ <span i18n-content="firstPar"></span> |
+ </div> |
+ <div class="explanation-par"> |
+ <span i18n-values=".innerHTML:secondPar"></span> |
+ </div> |
+ <div class="explanation-par"> |
+ <span i18n-content="thirdPar"></span> |
+ </div> |
+ </div> |
+ </div> |
+ <button id="reload-button" i18n-content="reloadMsg"></button> |
+ <button id="more-less-button" i18n-content="more"></button> |
+ </div> |
+ <!-- Outer and inner divs are needed both for margins and sizing. --> |
+ <div id="help-box-outer" class="hidden"> |
+ <div id="help-box-inner"> |
+ <div class="ssl-help-box-inner"> |
+ <h2><span i18n-content="moreTitle"></span></h2> |
+ <p i18n-content="moreContentFirst"></p> |
+ <p i18n-content="moreContentSecond"></p> |
+ </div> |
+ <div class="ssl-help-box-inner"> |
+ <h2><span i18n-content="techTitle"></span></h2> |
+ <p i18n-content="failure"></p> |
+ <span i18n-content="errorType"></span><br> |
+ <span i18n-content="subject"></span><br> |
+ <span i18n-content="issuer"></span><br> |
+ <span i18n-content="fingerprint"></span> |
+ </div> |
+ </div> |
+ </div> |
+ </div> |
+ </div> |
+</body> |
+</html> |