Skip to content

Commit d0728b0

Browse files
committed
feat(types): update bcd to 3.1.3
1 parent 39b3171 commit d0728b0

4 files changed

Lines changed: 17 additions & 9 deletions

File tree

baselines/dom.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11033,6 +11033,14 @@ declare var PerformanceObserverEntryList: {
1103311033
new(): PerformanceObserverEntryList;
1103411034
};
1103511035

11036+
interface PerformancePaintTiming extends PerformanceEntry {
11037+
}
11038+
11039+
declare var PerformancePaintTiming: {
11040+
readonly prototype: PerformancePaintTiming;
11041+
new(): PerformancePaintTiming;
11042+
};
11043+
1103611044
/** Enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources. An application can use the timing metrics to determine, for example, the length of time it takes to fetch a specific resource, such as an XMLHttpRequest, <SVG>, image, or script. */
1103711045
interface PerformanceResourceTiming extends PerformanceEntry {
1103811046
readonly connectEnd: DOMHighResTimeStamp;

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"license": "Apache-2.0",
3434
"type": "module",
3535
"devDependencies": {
36-
"@mdn/browser-compat-data": "3.1.2",
36+
"@mdn/browser-compat-data": "3.1.3",
3737
"@types/jsdom": "^16.2.6",
3838
"@types/node": "^14.14.31",
3939
"@types/node-fetch": "^2.5.8",

src/build/bcd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const forceKeepAlive: Record<string, string[]> = {
2020
"startContainer",
2121
"startOffset",
2222
],
23-
AnimationPlaybackEvent: ["currentTime", "timelineTime"],
2423
BeforeUnloadEvent: ["returnValue"],
2524
console: [
2625
"assert",
@@ -153,6 +152,7 @@ const forceKeepAlive: Record<string, string[]> = {
153152
ServiceWorkerGlobalScope: ["onmessageerror"],
154153
SVGAnimatedTransformList: ["animVal", "baseVal"],
155154
SVGElement: ["ownerSVGElement", "viewportElement"],
155+
SVGFECompositeElement: ["in1"], // https://github.com/mdn/browser-compat-data/issues/9337
156156
SVGTransformList: [
157157
"numberOfItems",
158158
"appendItem",

0 commit comments

Comments
 (0)