Chromium Code Reviews| Index: headless/README.md |
| diff --git a/headless/README.md b/headless/README.md |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..70017ec162cd7485792357561acb93f00e984849 |
| --- /dev/null |
| +++ b/headless/README.md |
| @@ -0,0 +1,21 @@ |
| +# Headless Chrome |
| + |
| +The purpose of the Headless Chrome project is to produce a version of Chrome |
| +that can run in a headless/server environment. Expected use cases include |
| +loading web pages, extracting metadata (e.g., the DOM) and generating bitmaps |
| +from page contents -- using all the modern web platform features provided by |
| +Blink. |
| + |
| +The main deliverables are: |
| + |
| +1. A library which headless applications can link to to. |
| + |
| +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
|
| + |
| +## API |
| + |
| +The headless API is defined under headless/public. |
| + |
| +## Testing |
| + |
| +The sample test shell application lives under headless/app. |