Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

RTCDataChannelParameters issues #519

Description

@aboba

partial interface RTCDataChannel : EventTarget {
readonly attribute RTCDataChannelParameters parameters;
}

[BA] This is illegal in WebIDL. Should be replaced by:

RTCDataChannelParameters getParameters();

In Example 23:

// Construct RTCDataChannelParameters object
var parameters = new RTCDataChannelParameters();

[BA] This is not correct, since RTCDataChannelParameters is a dictionary, not an object. Should be:

var parameters = {
label: "",
ordered: true,
maxPacketLifetime: ,
maxRetransmits: ,
protocol: "",
negotiated: false,
id:
};

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions