Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Headless Chrome | |
| 2 | |
| 3 The purpose of the Headless Chrome project is to produce a version of Chrome | |
| 4 that can run in a headless/server environment. Expected use cases include | |
| 5 loading web pages, extracting metadata (e.g., the DOM) and generating bitmaps | |
| 6 from page contents -- using all the modern web platform features provided by | |
| 7 Blink. | |
| 8 | |
| 9 The main deliverables are: | |
| 10 | |
| 11 1. A library which headless applications can link to to. | |
| 12 | |
| 13 2. A sample application which demonstrates the use of headless APIs. | |
|
Peter Beverloo
2015/10/27 14:35:51
Perhaps //headless/app/ would be more appropriatel
| |
| 14 | |
| 15 ## API | |
| 16 | |
| 17 The headless API is defined under headless/public. | |
| 18 | |
| 19 ## Testing | |
| 20 | |
| 21 The sample test shell application lives under headless/app. | |
| OLD | NEW |