Skip to content

Commit eed4263

Browse files
committed
[resize-observer-1] Relevant step of HTML's event loop is now 7.16
Fixes w3c#7546
1 parent 91b4358 commit eed4263

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

resize-observer-1/Overview.bs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -581,13 +581,13 @@ A {{ResizeObserver}} will remain alive until both of these conditions are met:
581581

582582
<h4 id="html-event-loop"> HTML Processing Model: Event Loop</h4>
583583

584-
{{ResizeObserver}} processing happens inside the step 7.12 of the <a>HTML Processing Model</a> event loop.
584+
{{ResizeObserver}} processing happens inside the step 7.16 of the <a>HTML Processing Model</a> event loop.
585585

586-
Step 12 is currently underspecified as:
586+
Step 16 is currently underspecified as:
587587

588588
<q>For each fully active Document in docs, update the rendering or user interface of that Document and its browsing context to reflect the current state.</q>.
589589

590-
Existing step 12 can be fully specified as:
590+
Existing step 16 can be fully specified as:
591591

592592
For each fully active Document in docs, run the following steps for that Document and its browsing contents:
593593

@@ -597,7 +597,7 @@ For each fully active Document in docs, run the following steps for that Documen
597597

598598
3. Paint
599599

600-
{{ResizeObserver}} extends step 12 with resize notifications.
600+
{{ResizeObserver}} extends step 16 with resize notifications.
601601
It tries to deliver all pending notifications by looping
602602
until no pending notifications are available. This can cause
603603
an infinite loop.
@@ -612,7 +612,7 @@ are undelivered notifications. Elements with undelivered notifications
612612
will be considered for delivery in the next loop.
613613

614614

615-
Step 12 with {{ResizeObserver}} notifications is:
615+
Step 16 with {{ResizeObserver}} notifications is:
616616

617617
For each fully active Document in docs, run the following steps for that Document and its browsing context:
618618

0 commit comments

Comments
 (0)