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

Side by Side Diff: chrome/renderer/resources/blocked_plugin.html

Issue 2862031: Add click-to-load functionality for blocked plugins. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: '' Created 10 years, 5 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
« no previous file with comments | « chrome/renderer/renderer_resources.grd ('k') | webkit/glue/plugins/webview_plugin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 background-color: rgb(252, 235, 162);
7 margin: 0;
8 text-align: center;
9 font-family: sans-serif;
10 }
11
12 #outer {
13 width: 100%;
14 height: 100%;
15 cursor: pointer;
16 position: absolute;
17 }
18
19 #inner {
20 position: relative;
21 top: 50%;
22 margin-top: -50px;
23 }
24
25 #top, #bottom, #left, #right {
26 background: black;
27 position: fixed;
28 }
29 #left, #right {
30 top: 0; bottom: 0;
31 width: 1px;
32 }
33 #left { left: 0; }
34 #right { right: 0; }
35
36 #top, #bottom {
37 left: 0; right: 0;
38 height: 1px;
39 }
40 #top { top: 0; }
41 #bottom { bottom: 0; }
42 </style>
43 </head>
44
45 <body id="t">
46 <div id="outer" onclick="plugin.load()">
47 <div id="left"></div>
48 <div id="right"></div>
49 <div id="top"></div>
50 <div id="bottom"></div>
51 <div id="inner">
52 <div><img src="../../app/theme/extensions_section.png" /></div>
53 <p i18n-content="loadPlugin">LOAD_PLUGIN</p>
54 </div>
55 </div>
56 </body>
57 </html>
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_resources.grd ('k') | webkit/glue/plugins/webview_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698