Skip to content
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
33 changes: 33 additions & 0 deletions api/Notification.json
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,39 @@
}
}
},
"navigate": {
"__compat": {
"spec_url": "https://notifications.spec.whatwg.org/#dom-notification-navigate",
"support": {
"chrome": {
"version_added": false
},
"chrome_android": "mirror",
"edge": "mirror",
"firefox": {
"version_added": false
},
"firefox_android": "mirror",
"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": "18.4"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shipped via WebKit/WebKit@a786946 in WebKit 621.1.9 before Safari 18.4.

},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": {
"version_added": false
}
},
"status": {
"experimental": true,
"standard_track": true,
"deprecated": false
}
}
},
"permission_static": {
"__compat": {
"description": "`permission` static property",
Expand Down
4 changes: 2 additions & 2 deletions utils/walk.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('walk()', () => {

it('should walk a single tree', () => {
const results = Array.from(walk('api.Notification'));
assert.equal(results.length, 28);
assert.equal(results.length, 29);
assert.equal(results[0].path, 'api.Notification');
assert.equal(results[1].path, 'api.Notification.Notification');
});
Expand All @@ -38,7 +38,7 @@ describe('walk()', () => {
const results = Array.from(
walk(['api.Notification', 'css.properties.color']),
);
assert.equal(results.length, 29);
assert.equal(results.length, 30);
assert.equal(results[0].path, 'api.Notification');
assert.equal(results[results.length - 1].path, 'css.properties.color');
});
Expand Down