-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fail early if Feature Policy is not supported #11270
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one nit
@@ -1,3 +1,7 @@ | |||
// Feature test to avoid timeouts | |||
function assert_feature_policy_supported() { | |||
assert_not_equals(document.policy, undefined, 'document.policy'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe "Feature Policy is supported" as the description, since this isn't really about testing document.policy, and making it trivial to understand the failure reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
This seems to be timing out in Travis because too many tests, and too verbose output. May need to admin-merge. |
@zcorpan I'll try rebasing first since @gsnedders fixed the verbosity. |
Actually, no, there was a timeout, which is #7660, still unresolved. |
Part of #11269.