| <!DOCTYPE html> | |
| <pre id="output"></pre> | |
| <script> | |
| if (window.testRunner) { | |
| testRunner.dumpAsText(); | |
| } | |
| function print(text) { | |
| output.textContent += text + '\n'; | |
| } | |
| print('This test documents Blink\'s web-exposed policy-controlled features.'); | |
| print('All changes to this list should go through Blink\'s feature review process: http://www.chromium.org/blink#new-features'); | |
| print(''); | |
| for (const feature of document.featurePolicy.features().sort()) { | |
| print(feature); | |
| } | |
| </script> |