diff --git a/css-layout-api/Overview.bs b/css-layout-api/Overview.bs index aaf5b5af..5b03385a 100644 --- a/css-layout-api/Overview.bs +++ b/css-layout-api/Overview.bs @@ -267,19 +267,16 @@ The section describes how a web developer uses {{registerLayout(name, layoutCtor layout.
-[Exposed=LayoutWorklet]
 dictionary LayoutOptions {
   ChildDisplayType childDisplay = "block";
   LayoutSizingMode sizing = "block-like";
 };
 
-[Exposed=LayoutWorklet]
 enum ChildDisplayType {
     "block", // default - "blockifies" the child boxes.
     "normal",
 };
 
-[Exposed=LayoutWorklet]
 enum LayoutSizingMode {
     "block-like", // default - Sizing behaves like block containers.
     "manual", // Sizing is specified by the web developer.