Skip to content

Commit 0dd94c3

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 19.1.7.
1 parent bbb221e commit 0dd94c3

File tree

9 files changed

+542
-304
lines changed

9 files changed

+542
-304
lines changed

ed/algorithms/notifications.json

Lines changed: 175 additions & 128 deletions
Large diffs are not rendered by default.

ed/algorithms/privacy-preserving-attribution.json

Lines changed: 53 additions & 29 deletions
Large diffs are not rendered by default.

ed/dfns/notifications.json

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,28 @@
134134
"definedIn": "prose",
135135
"links": []
136136
},
137+
{
138+
"id": "notification-navigation-url",
139+
"href": "https://notifications.spec.whatwg.org/#notification-navigation-url",
140+
"linkingText": [
141+
"navigation URL"
142+
],
143+
"localLinkingText": [],
144+
"type": "dfn",
145+
"for": [
146+
"notification"
147+
],
148+
"access": "public",
149+
"informative": false,
150+
"heading": {
151+
"id": "notifications",
152+
"href": "https://notifications.spec.whatwg.org/#notifications",
153+
"title": "Notifications",
154+
"number": "2"
155+
},
156+
"definedIn": "prose",
157+
"links": []
158+
},
137159
{
138160
"id": "tag",
139161
"href": "https://notifications.spec.whatwg.org/#tag",
@@ -528,6 +550,28 @@
528550
"definedIn": "dt",
529551
"links": []
530552
},
553+
{
554+
"id": "notification-action-navigation-url",
555+
"href": "https://notifications.spec.whatwg.org/#notification-action-navigation-url",
556+
"linkingText": [
557+
"navigation URL"
558+
],
559+
"localLinkingText": [],
560+
"type": "dfn",
561+
"for": [
562+
"notification action"
563+
],
564+
"access": "public",
565+
"informative": false,
566+
"heading": {
567+
"id": "notifications",
568+
"href": "https://notifications.spec.whatwg.org/#notifications",
569+
"title": "Notifications",
570+
"number": "2"
571+
},
572+
"definedIn": "dt",
573+
"links": []
574+
},
531575
{
532576
"id": "action-icon-url",
533577
"href": "https://notifications.spec.whatwg.org/#action-icon-url",
@@ -1011,6 +1055,28 @@
10111055
"definedIn": "pre",
10121056
"links": []
10131057
},
1058+
{
1059+
"id": "dom-notificationoptions-navigate",
1060+
"href": "https://notifications.spec.whatwg.org/#dom-notificationoptions-navigate",
1061+
"linkingText": [
1062+
"navigate"
1063+
],
1064+
"localLinkingText": [],
1065+
"type": "dict-member",
1066+
"for": [
1067+
"NotificationOptions"
1068+
],
1069+
"access": "public",
1070+
"informative": false,
1071+
"heading": {
1072+
"id": "api",
1073+
"href": "https://notifications.spec.whatwg.org/#api",
1074+
"title": "API",
1075+
"number": "3"
1076+
},
1077+
"definedIn": "pre",
1078+
"links": []
1079+
},
10141080
{
10151081
"id": "dom-notificationoptions-tag",
10161082
"href": "https://notifications.spec.whatwg.org/#dom-notificationoptions-tag",
@@ -1489,6 +1555,28 @@
14891555
"definedIn": "pre",
14901556
"links": []
14911557
},
1558+
{
1559+
"id": "dom-notificationaction-navigate",
1560+
"href": "https://notifications.spec.whatwg.org/#dom-notificationaction-navigate",
1561+
"linkingText": [
1562+
"navigate"
1563+
],
1564+
"localLinkingText": [],
1565+
"type": "dict-member",
1566+
"for": [
1567+
"NotificationAction"
1568+
],
1569+
"access": "public",
1570+
"informative": false,
1571+
"heading": {
1572+
"id": "api",
1573+
"href": "https://notifications.spec.whatwg.org/#api",
1574+
"title": "API",
1575+
"number": "3"
1576+
},
1577+
"definedIn": "pre",
1578+
"links": []
1579+
},
14921580
{
14931581
"id": "dom-notificationaction-icon",
14941582
"href": "https://notifications.spec.whatwg.org/#dom-notificationaction-icon",
@@ -1843,6 +1931,28 @@
18431931
"definedIn": "prose",
18441932
"links": []
18451933
},
1934+
{
1935+
"id": "dom-notification-navigate",
1936+
"href": "https://notifications.spec.whatwg.org/#dom-notification-navigate",
1937+
"linkingText": [
1938+
"navigate"
1939+
],
1940+
"localLinkingText": [],
1941+
"type": "attribute",
1942+
"for": [
1943+
"Notification"
1944+
],
1945+
"access": "public",
1946+
"informative": false,
1947+
"heading": {
1948+
"id": "object-members",
1949+
"href": "https://notifications.spec.whatwg.org/#object-members",
1950+
"title": "Object members",
1951+
"number": "3.4"
1952+
},
1953+
"definedIn": "prose",
1954+
"links": []
1955+
},
18461956
{
18471957
"id": "dom-notification-tag",
18481958
"href": "https://notifications.spec.whatwg.org/#dom-notification-tag",

ed/idl/notifications.idl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ interface Notification : EventTarget {
2121
readonly attribute NotificationDirection dir;
2222
readonly attribute DOMString lang;
2323
readonly attribute DOMString body;
24+
readonly attribute USVString navigate;
2425
readonly attribute DOMString tag;
2526
readonly attribute USVString image;
2627
readonly attribute USVString icon;
@@ -40,6 +41,7 @@ dictionary NotificationOptions {
4041
NotificationDirection dir = "auto";
4142
DOMString lang = "";
4243
DOMString body = "";
44+
USVString navigate;
4345
DOMString tag = "";
4446
USVString image;
4547
USVString icon;
@@ -68,6 +70,7 @@ enum NotificationDirection {
6870
dictionary NotificationAction {
6971
required DOMString action;
7072
required DOMString title;
73+
USVString navigate;
7174
USVString icon;
7275
};
7376

0 commit comments

Comments
 (0)