Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
15 changes: 0 additions & 15 deletions inputfiles/overridingTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -342,21 +342,6 @@
}
}
},
"callbackInterfaces": {
"interface": {}
},
"enums": {
"enum": {
"ImageOrientation": {
"value": [
// The spec removed this but it's still in browsers and WebKit doesn't support the new one.
// Keep it until it's safer to fully migrate.
// See https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1507#issuecomment-1454792451
"none"
]
}
}
},
"interfaces": {
"interface": {
"CryptoKey": {
Expand Down
7 changes: 7 additions & 0 deletions inputfiles/patches/dom.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ enum InsertPosition {
afterbegin
afterend
}

enum ImageOrientation {
Copy link
Contributor

Choose a reason for hiding this comment

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

This is not dom but html, so html.kdl

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

// The spec removed this but it's still in browsers and WebKit doesn't support the new one.
// Keep it until it's safer to fully migrate.
// See https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1507#issuecomment-1454792451
none
}