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

Side by Side Diff: chrome/test/data/extensions/api_test/icons/extension_no_permission/index.html

Issue 10826157: Check for warnings when loading extensions in browser tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix existing tests Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head><title>Not Loaded</title></head>
3 <title>Not Loaded</title>
4 <script type="text/javascript">
5
6 function load(e) {
7 document.title = "Loaded";
8 }
9
10 function error(e) {
11 document.title = "Not Loaded";
12 }
13
14 </script>
15
16 </head>
17 <body> 3 <body>
18 4 <script src="index.js"></script>
19 <img src="chrome://extension-icon/apocjbpjpkghdepdngjlknfpmabcmlao/24/0"
20 testsize="24px"
21 onload="load(event);"
22 onerror="error(event);"/>
23
24 </body> 5 </body>
25 </head> 6 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698