Skip to content
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

Stop using FrozenArray in dictionaries #118

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ An {{XRHitTestOptionsInit}} dictionary represents a set of configurable values t
<script type="idl">
dictionary XRHitTestOptionsInit {
required XRSpace space;
FrozenArray<XRHitTestTrackableType> entityTypes;
sequence<XRHitTestTrackableType> entityTypes;
XRRay offsetRay;
};
</script>
Expand All @@ -203,7 +203,7 @@ An {{XRTransientInputHitTestOptionsInit}} dictionary represents a set of configu
<script type="idl">
dictionary XRTransientInputHitTestOptionsInit {
required DOMString profile;
FrozenArray<XRHitTestTrackableType> entityTypes;
sequence<XRHitTestTrackableType> entityTypes;
XRRay offsetRay;
};
</script>
Expand Down Expand Up @@ -647,7 +647,7 @@ The <dfn>distance along the ray</dfn>, |distance|, from {{XRRay}} |ray| to any e

</div>

Native device concepts {#native-device-concepts}
Native device concepts {#native-device-concepts}
======================

<section class="non-normative">
Expand Down
Loading