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

Side by Side Diff: chrome/renderer/resources/plugins/plugin_delay.html

Issue 2143073002: Plugin Power Saver: Improve blocked tiny plugins behavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename a variable again Created 4 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, user-scalable=no">
6 <script>
7 window.onload = function() {
8 if (plugin.didFinishLoading)
9 plugin.didFinishLoading();
10 if (plugin.didFinishIconRepositionForTesting) {
11 // Defer until reflow complete.
12 window.setTimeout(function() {
13 plugin.didFinishIconRepositionForTesting();
14 });
15 }};
16 </script>
17 <body>
18 <div></div>
19 </body>
20 </html>
21
OLDNEW
« no previous file with comments | « chrome/renderer/resources/plugins/blocked_plugin.html ('k') | chrome/renderer/resources/renderer_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698