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

Side by Side Diff: headless/lib/resources/devtools_discovery_page.html

Issue 1698403004: headless: Add devtools discovery page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 9 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Content shell remote debugging</title> 3 <title>Headless remote debugging</title>
4 <style> 4 <style>
5 </style> 5 </style>
6 6
7 <script> 7 <script>
8 function onLoad() { 8 function onLoad() {
9 var tabs_list_request = new XMLHttpRequest(); 9 var tabs_list_request = new XMLHttpRequest();
10 tabs_list_request.open("GET", "/json/list?t=" + new Date().getTime(), true); 10 tabs_list_request.open("GET", "/json/list?t=" + new Date().getTime(), true);
11 tabs_list_request.onreadystatechange = onReady; 11 tabs_list_request.onreadystatechange = onReady;
12 tabs_list_request.send(); 12 tabs_list_request.send();
13 } 13 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 document.getElementById("items").appendChild(item); 46 document.getElementById("items").appendChild(item);
47 } 47 }
48 </script> 48 </script>
49 </head> 49 </head>
50 <body onload='onLoad()'> 50 <body onload='onLoad()'>
51 <div id='caption'>Inspectable WebContents</div> 51 <div id='caption'>Inspectable WebContents</div>
52 <div id='items'></div> 52 <div id='items'></div>
53 </body> 53 </body>
54 </html> 54 </html>
OLDNEW
« no previous file with comments | « headless/lib/browser/headless_devtools.cc ('k') | headless/lib/resources/headless_lib_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698