{%- macro show_value(value) -%} {{ value | default('No information provided', true) | safe }} {%- endmacro -%} {%- macro urlize_with_default(value) -%} {%- if value -%} {{ value | urlize | safe }} {%- else -%} No information provided {%- endif -%} {%- endmacro -%}
Contact emails
{%- if not feature.browsers.chrome.owners -%} No information provided {%- else -%} {%- for owner in feature.browsers.chrome.owners -%} {{owner}}{%- if not loop.last -%}, {% endif %} {%- endfor -%} {%- endif -%} {%- if feature.explainer_links or (feature.feature_type_int != 1 and feature.feature_type_int != 2) -%}

Explainer
{%- if not feature.explainer_links -%} No information provided {%- else -%} {%- for link in feature.explainer_links -%} {% if loop.index0 %}
{% endif %}{{link}} {%- endfor -%} {%- endif -%} {%- endif -%}

Specification
{{ urlize_with_default(feature.standards.spec) }} {% if feature.resources and feature.resources.docs -%}

Design docs
{%- if not feature.explainer_links -%} No information provided {%- endif -%} {%- for link in feature.resources.docs -%}
{{link}} {%- endfor -%} {%- endif -%}

Summary
{{ urlize_with_default(feature.summary) }}

Blink component
{% for c in feature.browsers.chrome.blink_components -%} {{ show_value(c) }} {%- endfor -%}

Web Feature ID
{% if feature.is_official_web_feature -%} {{ show_value(feature.web_feature) }} {%- elif feature.web_feature -%} {{ show_value(feature.web_feature) }} {%- else -%} No information provided {%- endif %} {% if intent_type in ['prototype', 'deprecate', 'ship'] -%}

Motivation
{{ urlize_with_default(feature.motivation) }}

Initial public proposal
{{ urlize_with_default(feature.initial_public_proposal_url) }} {%- endif -%} {% if feature.tags -%}

Search tags
{%- for tag in feature.tags -%} {{tag}}{%- if not loop.last -%}, {% endif %} {%- endfor -%} {%- endif -%} {%- if intent_type in ['experiment', 'extend_experiment', 'ship'] -%}

TAG review
{{ urlize_with_default(feature.tag_review) }} {% if feature.tag_review_status -%}

TAG review status
{{ show_value(feature.tag_review_status) }} {%- endif -%} {%- endif -%} {% for stage in stage_info.ot_stages -%} {%- if stage.ot_display_name -%}

Origin Trial Name
{{stage.ot_display_name}} {%- endif -%}

Goals for experimentation
{{stage.experiment_goals}} {%- if stage.ot_chromium_trial_name -%}

Chromium Trial Name
{{stage.ot_chromium_trial_name}} {%- endif -%} {%- if stage.origin_trial_feedback_url -%}

Link to origin trial feedback summary
{{stage.origin_trial_feedback_url}} {%- endif -%} {%- if stage.ot_documentation_url -%}

Origin Trial documentation link
{{stage.ot_documentation_url}} {%- endif -%} {%- if stage.ot_webfeature_use_counter -%}

WebFeature UseCounter name
{{stage.ot_webfeature_use_counter}} {%- endif -%} {%- endfor -%} {%- if intent_type in ['developer_testing', 'experiment', 'extend_experiment', 'ship', 'psa'] %}

Risks


Interoperability and Compatibility
{{ urlize_with_default(feature.interop_compat_risks) }}

Gecko: {{ show_value(feature.browsers.ff.view.text) }} {%- if feature.browsers.ff.view.url -%}  ({{ show_value(feature.browsers.ff.view.url) }}) {%- endif -%} {%- if feature.browsers.ff.view.notes -%}  {{ urlize_with_default(feature.browsers.ff.view.notes) }} {%- endif -%}

WebKit: {{ show_value(feature.browsers.safari.view.text) }} {%- if feature.browsers.safari.view.url -%}  ({{ show_value(feature.browsers.safari.view.url) }}) {%- endif -%} {%- if feature.browsers.safari.view.notes -%}  {{ urlize_with_default(feature.browsers.safari.view.notes) }} {%- endif -%}

Web developers: {{ show_value(feature.browsers.webdev.view.text) }} {%- if feature.browsers.webdev.view.url -%}  ({{ show_value(feature.browsers.webdev.view.url) }}) {%- endif -%} {%- if feature.browsers.webdev.view.notes -%}  {{ urlize_with_default(feature.browsers.webdev.view.notes) }} {%- endif -%}

Other signals: {%- if feature.browsers.other.view.notes -%}  {{ urlize_with_default(feature.browsers.other.view.notes) }} {%- endif -%} {%- if feature.ergonomics_risks -%}

Ergonomics
{{ urlize_with_default(feature.ergonomics_risks) }} {%- endif -%} {%- if feature.activation_risks -%}

Activation
{{ urlize_with_default(feature.activation_risks) }} {%- endif -%} {%- if feature.security_risks -%}

Security
{{ urlize_with_default(feature.security_risks) }} {%- endif -%}

WebView application risks

Does this intent deprecate or change behavior of existing APIs, such that it has potentially high risk for Android WebView-based applications?

{{ urlize_with_default(feature.webview_risks) }}
{%- endif -%} {%- if intent_type in ['experiment', 'extend_experiment'] -%} {%- if feature.experiment_timeline -%}

Experimental timeline
{{ urlize_with_default(feature.experiment_timeline) }} {%- endif -%} {%- if intent_type in ['experiment', 'extend_experiment'] -%} {%- for stage in stage_info.extension_stages -%} {%- if stage.experiment_extension_reason -%}

Reason this experiment is being extended
{{ urlize_with_default(stage.experiment_extension_reason) }} {%- endif -%} {%- endfor -%} {%- endif -%}

Ongoing technical constraints
{{ urlize_with_default(feature.ongoing_constraints) }} {%- endif -%} {%- if intent_type in ['developer_testing', 'experiment', 'extend_experiment', 'ship', 'psa', 'deprecate'] -%}

Debuggability
{{ urlize_with_default(feature.debuggability) }} {% endif -%} {% if intent_type in ['developer_testing', 'experiment', 'extend_experiment', 'psa', 'ship'] -%}

Will this feature be supported on all six Blink platforms (Windows, Mac, Linux, ChromeOS, Android, and Android WebView)?
{%- if feature.all_platforms -%}Yes{%- else -%}No{%- endif -%} {%- if feature.all_platforms_descr %}
{{ urlize_with_default(feature.all_platforms_descr) }} {% endif -%}

Is this feature fully tested by web-platform-tests?
{% if feature.wpt -%}Yes{%- else -%}No{%- endif %}
{% if feature.wpt_descr -%} {{ urlize_with_default(feature.wpt_descr) }} {%- endif -%} {%- endif -%} {% if feature.devtrial_instructions -%}

DevTrial instructions
{{ show_value(feature.devtrial_instructions) }} {%- endif -%} {%- if intent_type in ['developer_testing', 'experiment', 'extend_experiment', 'ship'] -%}

Flag name on about://flags
{{ show_value(feature.flag_name) }}

Finch feature name
{{ show_value(feature.finch_name) }} {% if feature.non_finch_justification -%}

Non-finch justification
{{ urlize_with_default(feature.non_finch_justification) }} {%- elif not feature.finch_name -%}

Non-finch justification
No information provided {%- endif -%} {%- endif -%} {%- if intent_type == 'ship' -%}

Rollout plan
{{ show_value(feature.rollout_plan_displayname) }} {%- endif -%}

{%- if feature.feature_type_int != 2 %}
Requires code in //chrome?
{{feature.requires_embedder_support}} {%- endif -%} {%- if feature.browsers.chrome.bug -%}

Tracking bug
{{ show_value(feature.browsers.chrome.bug) }} {%- endif -%} {%- if feature.launch_bug_url -%}

Launch bug
{{ show_value(feature.launch_bug_url) }} {%- endif -%} {%- if feature.measurement -%}

Measurement
{{ urlize_with_default(feature.measurement) }} {%- endif -%} {%- if feature.availability_expectation -%}

Availability expectation
{{ urlize_with_default(feature.availability_expectation) }} {%- endif -%} {%- if feature.adoption_expectation -%}

Adoption expectation
{{ urlize_with_default(feature.adoption_expectation) }} {%- endif -%} {%- if feature.adoption_plan -%}

Adoption plan
{{ urlize_with_default(feature.adoption_plan) }} {%- endif -%} {%- if feature.non_oss_deps -%}

Non-OSS dependencies

Does the feature depend on any code or APIs outside the Chromium open source repository and its open-source dependencies to function?

{{ urlize_with_default(feature.non_oss_deps) }} {%- endif -%} {%- if intent_type == ['developer_testing', 'experiment', 'extend_experiment', 'ship'] -%} {%- if feature.resources and feature.resources.samples -%}

Sample links
{%- for link in feature.resources.samples -%}
{{ show_value(link) }} {%- endfor -%} {%- endif -%} {%- endif -%}

Estimated milestones
{%- include "estimated-milestones-table.html" -%} {%- if feature.feature_type_int != 2 -%} {%- if intent_type == 'ship' or feature.anticipated_spec_changes -%}

Anticipated spec changes

Open questions about a feature may be a source of future web compat or interop issues. Please list open issues (e.g. links to known github issues in the project for the feature specification) whose resolution may introduce web compat/interop risk (e.g., changing to naming or structure of the API in a non-backward-compatible way).

{{ urlize_with_default(feature.anticipated_spec_changes) }} {%- endif -%} {%- endif -%}

Link to entry on the {{APP_TITLE}}
{{ show_value(default_url) }} {%- if should_render_intents -%}

Links to previous Intent discussions
{%- for stage in stage_info.proto_stages -%} {%- if stage.intent_thread_url -%} Intent to Prototype: {{ urlize_with_default(stage.intent_thread_url) }}
{%- endif -%} {%- endfor -%} {%- for stage in stage_info.dt_stages -%} {%- if stage.announcement_url -%} Ready for Trial: {{ urlize_with_default(stage.announcement_url) }}
{%- endif -%} {%- endfor -%} {%- for stage in stage_info.ot_stages -%} {%- if stage.intent_thread_url -%} Intent to Experiment: {{ urlize_with_default(stage.intent_thread_url) }}
{%- endif -%} {%- endfor -%} {%- for stage in stage_info.extension_stages -%} {%- if stage.intent_thread_url -%} Intent to Extend Experiment {{loop.index}}: {{ urlize_with_default(stage.intent_thread_url) }}
{%- endif -%} {%- endfor -%} {%- for stage in stage_info.ship_stages -%} {%- if stage.intent_thread_url -%} Intent to Ship: {{ urlize_with_default(stage.intent_thread_url) }}
{%- endif -%} {%- endfor -%} {%- endif -%}

This intent message was generated by Chrome Platform Status.