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

Add ResizeObserver #2396

Merged
merged 3 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
draft_date: 2024-10-21
name: Resize Observer
description: TODO
name: Resize observer
description: The `ResizeObserver` API observes and reacts to changes in the size of DOM elements.
spec: https://drafts.csswg.org/resize-observer-1/
caniuse: resizeobserver
# Computed to match Caniuse.
status:
compute_from: api.ResizeObserver
compat_features:
- api.ResizeObserver
- api.ResizeObserver.ResizeObserver
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Generated from: resize-observer-1.yml
# Generated from: resize-observer.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: false
baseline: high
baseline_low_date: 2020-07-28
baseline_high_date: 2023-01-28
support:
chrome: "84"
chrome_android: "84"
edge: "84"
firefox: "93"
firefox_android: "93"
chrome: "64"
chrome_android: "64"
edge: "79"
firefox: "69"
firefox_android: "79"
safari: "13.1"
safari_ios: "13.4"
compat_features:
# ⬇️ Same status as overall feature ⬇️
# baseline: high
# baseline_low_date: 2020-07-28
# baseline_high_date: 2023-01-28
Expand Down Expand Up @@ -60,7 +65,6 @@ compat_features:
- api.ResizeObserverEntry.borderBoxSize
- api.ResizeObserverEntry.contentBoxSize

# ⬇️ Same status as overall feature ⬇️
# baseline: false
# support:
# chrome: "84"
Expand Down
Loading