| OLD | NEW |
| 1 W3C Web Platform Tests in Blink Layout Tests | 1 W3C Web Platform Tests in Blink Layout Tests |
| 2 | 2 |
| 3 Design Doc: https://goo.gl/iXUaZd | 3 Design Doc: https://goo.gl/iXUaZd |
| 4 | 4 |
| 5 This directory contains checked out and reduced code from web-platform-tests | 5 This directory contains checked out and reduced code from web-platform-tests |
| 6 (https://github.com/w3c/web-platform-tests/) required to run WPT tests as part | 6 (https://github.com/w3c/web-platform-tests/) required to run WPT tests as part |
| 7 of Blink's test infrastructure and some maintenance/configuration code. | 7 of Blink's test infrastructure and some maintenance/configuration code. |
| 8 | 8 |
| 9 The third party code lives entirely in the wpt subdirectory: | 9 The third party code lives entirely in the wpt subdirectory: |
| 10 Tools/Scripts/webkitpy/thirdparty/wpt/wpt | 10 Tools/Scripts/webkitpy/thirdparty/wpt/wpt |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 for tests which live in LayoutTests/imported/wpt. | 149 for tests which live in LayoutTests/imported/wpt. |
| 150 | 150 |
| 151 WPTServe starts HTTP/S and WS/S servers as separate processes. | 151 WPTServe starts HTTP/S and WS/S servers as separate processes. |
| 152 | 152 |
| 153 The content_shell used to run the tests will receive the URL of each test | 153 The content_shell used to run the tests will receive the URL of each test |
| 154 (instead of a filename). The document root http://web-platform.test/ maps to | 154 (instead of a filename). The document root http://web-platform.test/ maps to |
| 155 LayoutTests/imported/wpt. HTTPS tests are enabled by default. | 155 LayoutTests/imported/wpt. HTTPS tests are enabled by default. |
| 156 | 156 |
| 157 Example run: | 157 Example run: |
| 158 | 158 |
| 159 ./Tools/Scripts/run-webkit-tests \ | 159 ./Tools/Scripts/run-webkit-tests --enable-wptserve imported/wpt |
| 160 --debug \ | |
| 161 --enable-wptserve \ | |
| 162 --no-new-test-results \ | |
| 163 imported/wpt | |
| OLD | NEW |