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

Side by Side Diff: chrome/test/data/extensions/activity_log/options.html

Issue 13726026: Added ActivityLog tests and associated bugfixes/extra logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped line Created 7 years, 8 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="options.js"></script> 4 <script src="options.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <button id="api_call">Make a successful API call</button><br /> 7 <button id="api_call">Make a successful API call</button><br />
8 <button id="special_call">Make a special API call</button><br /> 8 <button id="special_call">Make a special API call</button><br />
9 <button id="double">Check we don't double log API calls</button><br /> 9 <button id="double">Check we don't double log API calls</button><br />
10 <button id="app_bindings">Make a chrome.app.* API call</button><br />
10 <button id="blocked_call">Make a blocked API call</button><br /> 11 <button id="blocked_call">Make a blocked API call</button><br />
11 <button id="inject_cs">Inject a content script</button><br /> 12 <button id="inject_cs">Inject a content script</button><br />
12 <button id="inject_blob">Inject a blob of code</button><br /> 13 <button id="inject_blob">Inject a blob of code</button><br />
13 <button id="background_xhr">Do a background XHR</button><br /> 14 <button id="background_xhr">Do a background XHR</button><br />
14 <button id="cs_xhr">Do a content script XHR</button><br /> 15 <button id="cs_xhr">Do a content script XHR</button><br />
15 <button id="webrequest">Modify HTTP headers with webRequest</button><br /> 16 <button id="webrequest">Modify HTTP headers with webRequest</button><br />
17 <button id="object_properties">Read and change an object's
18 properties</button><br />
19 <button id="object_methods">Invoke an object's methods</button><br />
20 <button id="message_cs">Send a message to a content script</button><br />
21 <button id="message_self">Send a message within the ext</button><br />
22 <button id="message_other">Send a message to another ext</button><br />
23 <button id="connect_other">Connect to another ext</button><br />
16 <br /> 24 <br />
17 <b>Status:</b> <div id="status"></div> 25 <b>Status:</b> <div id="status"></div>
18 </body> 26 </body>
19 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698