From 085474f5ab95c7a8d8aa9c616796c5985442ae19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= Date: Tue, 14 Aug 2018 13:55:04 +0200 Subject: [PATCH] Change children attribute from sequence to FrozenArray Web IDL does not allow attributes to be of type sequence. --- box-tree-api/Overview.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box-tree-api/Overview.bs b/box-tree-api/Overview.bs index 64a2419a..4097e3bd 100644 --- a/box-tree-api/Overview.bs +++ b/box-tree-api/Overview.bs @@ -79,7 +79,7 @@ interface DeadFragmentInformation { readonly attribute double top; readonly attribute double left; readonly attribute boolean isOverflowed; - readonly attribute sequence<DeadFragmentInformation>? children; + readonly attribute FrozenArray<DeadFragmentInformation>? children; readonly attribute DeadFragmentInformation? nextSibling; readonly attribute DeadFragmentInformation? previousSibling; readonly attribute DeadFragmentInformation? nextInBox;