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

Side by Side Diff: chrome/test/data/extensions/api_test/activity_log_private/friend/options.html

Issue 19014003: Modifications to activity logging end to end tests. Reduces the number of window.open calls to make… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="reply.js"></script> 4 <script src="reply.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <h1>Settings</h1>
8 <input type="checkbox" id="incognito_checkbox">Use incognito mode</input>
7 <h1>Chrome API calls</h1> 9 <h1>Chrome API calls</h1>
8 <button name="chromeButton" id="api_call"> 10 <button name="chromeButton" id="api_call">
9 Make a successful API call</button><br /> 11 Make a successful API call</button><br />
10 <button name="chromeButton" id="special_call"> 12 <button name="chromeButton" id="special_call">
11 Make a special API call</button><br /> 13 Make a special API call</button><br />
12 <button name="chromeButton" id="double"> 14 <button name="chromeButton" id="double">
13 Check we don't double log API calls</button><br /> 15 Check we don't double log API calls</button><br />
14 <button name="chromeButton" id="app_bindings"> 16 <button name="chromeButton" id="app_bindings">
15 Make a chrome.app.* API call</button><br /> 17 Make a chrome.app.* API call</button><br />
16 <button name="chromeButton" id="blocked_call"> 18 <button name="chromeButton" id="blocked_call">
17 Make a blocked API call</button><br /> 19 Make a blocked API call</button><br />
18 <button name="chromeButton" id="inject_cs"> 20 <button name="chromeButton" id="object_methods">
19 Inject a content script</button><br /> 21 Invoke an object's methods</button><br />
20 <button name="chromeButton" id="inject_blob">
21 Inject a blob of code</button><br />
22 <button name="chromeButton" id="webrequest"> 22 <button name="chromeButton" id="webrequest">
23 Modify HTTP headers with webRequest</button><br /> 23 Modify HTTP headers with webRequest</button><br />
24 <button name="chromeButton" id="object_properties"> 24 <button name="chromeButton" id="connect_other">
25 Read and change an object's properties</button><br /> 25 Connect to another ext</button><br />
26 <button name="chromeButton" id="object_methods">
27 Invoke an object's methods</button><br />
28 <button name="chromeButton" id="message_cs">
29 Send a message to a content script</button><br />
30 <button name="chromeButton" id="message_self"> 26 <button name="chromeButton" id="message_self">
31 Send a message within the ext</button><br /> 27 Send a message within the ext</button><br />
32 <button name="chromeButton" id="message_other"> 28 <button name="chromeButton" id="message_other">
33 Send a message to another ext</button><br /> 29 Send a message to another ext</button><br />
34 <button name="chromeButton" id="connect_other"> 30 <button name="chromeButton" id="connect_other">
35 Connect to another ext</button><br /> 31 Connect to another ext</button><br />
36 <button name="chromeButton" id="tab_ids"> 32 <button name="chromeButton" id="tab_ids">
37 Tab ID translation</button><br /> 33 Tab ID translation</button><br />
34 <button name="chromeButton" id="api_tab_updated">
35 Execute api calls on new tab</button><br />
36
38 <br /> 37 <br />
39 <h1>DOM and HTML5 API calls</h1> 38 <h1>DOM and HTML5 API calls</h1>
40 <button name="domButton" id="background_xhr"> 39 <button name="domButton" id="background_xhr">
41 Do a XHR from background page</button><br /> 40 Do a XHR from background page</button><br />
42 <button name="domButton" id="cs_xhr"> 41
43 Do a XHR from content script</button><br /> 42 <button name="domButton" id="dom_tab_updated">
44 <button name="domButton" id="location_access"> 43 Execute dom calls on tab updated</button><br />
45 Acccess Location</button><br />
46 <button name="domButton" id="dom_mutation1">
47 Mutate DOM tree - test1</button><br />
48 <button name="domButton" id="dom_mutation2">
49 Mutate DOM tree - test2</button><br />
50 <button name="domButton" id="navigator_access">
51 Access HTML5 Navigator API</button><br />
52 <button name="domButton" id="web_storage_access1">
53 Access HTML5 WebStorage API - test1</button><br />
54 <button name="domButton" id="web_storage_access2">
55 Access HTML5 WebStorage API - test2</button><br />
56 <button name="domButton" id="notification_access">
57 Access HTML5 Notifcation API</button><br />
58 <button name="domButton" id="application_cache_access">
59 Access HTML5 ApplicationCache API</button><br />
60 <button name="domButton" id="web_database_access">
61 Access HTML5 WebDatabase API</button><br />
62 <button name="domButton" id="canvas_access">
63 Access HTML5 Canvas API</button><br />
64 <br /> 44 <br />
65 <h1>Status:</h1> <div id="status"></div> 45 <h1>Status:</h1> <div id="status"></div>
66 </body> 46 </body>
67 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698