Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: components/data_reduction_proxy/content/resources/interstitial.html

Issue 830503004: Data Reduction Proxy blocking page and resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interstitalStep1
Patch Set: Test resources fix Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
bengr 2015/02/05 01:30:09 Do we put a copyright notice on html?
megjablon 2015/02/13 01:48:09 Nope.
2 <html i18n-values="dir:textdirection;.style.fontSize:fontsize">
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport"
6 content="initial-scale=1, minimum-scale=1, width=device-width">
7 <title i18n-content="tabTitle"></title>
8 <link rel="stylesheet" href="interstitial.css">
9 <script src="../../../../ui/webui/resources/js/util.js"></script>
10 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
11 <script src="data_reduction_proxy.js"></script>
12 <script src="interstitial.js"></script>
13 </head>
14 <body id="body" i18n-values=".style.fontFamily:fontfamily">
15 <div class="interstitial-wrapper">
16 <div class="icon" id="icon"></div>
17 <div id="main-message">
18 <h1 i18n-content="heading"></h1>
19 <p i18n-values=".innerHTML:primaryParagraph"></p>
20 <p i18n-values=".innerHTML:secondaryParagraph"></p>
21 </div>
22 <div class="nav-wrapper">
23 <button i18n-content="primaryButtonText" id="primary-button"></button>
24 <button i18n-content="secondaryButtonText" id="secondary-button"></button>
25 </div>
26 </div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698