diff --git a/cssom-1/Overview.bs b/cssom-1/Overview.bs
index 45c319e62094..a46f1e108869 100644
--- a/cssom-1/Overview.bs
+++ b/cssom-1/Overview.bs
@@ -748,21 +748,23 @@ represents a style sheet as defined by the CSS specification. In the CSSOM a
- CSSStyleSheet(options)
-
- When called, execute these steps:
+ When called, execute the steps to create a constructed CSSStyleSheet given options and return the result.
+
+
+ - To create a constructed {{/CSSStyleSheet}}
given {{CSSStyleSheetInit}} options, run these steps:
+ -
- - Construct a new {{/CSSStyleSheet}} object sheet with the following properties:
-
+
- Construct a new {{/CSSStyleSheet}} object sheet.
+ - Set sheet's location to the base URL of the associated Document for the current global object.
+
- Set sheet's stylesheet base URL to the {{CSSStyleSheetInit/baseURL}} attribute value from options.
+
- Set sheet's parent CSS style sheet to null.
+
- Set sheet's owner node to null.
+
- Set sheet's owner CSS rule to null.
+
- Set sheet's title to the the empty string.
+
- Unset sheet's alternate flag.
+
- Set sheet's origin-clean flag.
+
- Set sheet's constructed flag.
+
- Set sheet's Constructor document to the associated Document for the current global object.
- If the {{CSSStyleSheetInit/media}} attribute of options is a string,
create a MediaList object from the string
and assign it as sheet's media.
@@ -1027,14 +1029,17 @@ The replace(text) method
- Return promise.
-The replaceSync(text) method must run the following steps:
+The replaceSync(text) method must run the
+steps to synchronously replace the rules of a CSSStyleSheet on this {{CSSStyleSheet}} given text.
+
+To synchronously replace the rules of a CSSStyleSheet on sheet given text, run these steps:
- If the constructed flag is not set, or the disallow modification flag is set, throw a {{NotAllowedError}}
{{DOMException}}.
- Let rules be the result of running parse a list of rules from text. If rules is
not a list of rules (i.e. an error occurred during parsing), set rules to an empty list.
- If rules contains one or more @import rules, remove those rules from rules.
-
- Set CSS rules to rules.
+
- Set sheet's CSS rules to rules.
#### Deprecated CSSStyleSheet members #### {#legacy-css-style-sheet-members}