Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e1e70dd
Add image formats
caugner Jun 27, 2025
be139cd
Add new media top-level object to README
caugner Aug 14, 2025
cfc75b4
Merge branch 'main' into 6971-image-formats
caugner Aug 14, 2025
e6eb726
Merge branch 'main' into 6971-image-formats
caugner Aug 26, 2025
6381f06
Chromium unshipped JPEG XL
caugner Aug 26, 2025
fdf5942
Remove GIF animation (same support as parent)
caugner Aug 26, 2025
d74068b
Add HEIC/HEIF bugs
caugner Aug 26, 2025
39ed6e2
Rename HEIC to HEIF
caugner Aug 26, 2025
08676cd
Refine Safari data for AVIF
caugner Aug 26, 2025
71439fb
Safari doesn't support JPEG XL with animated images
caugner Aug 26, 2025
aabc88e
Add Edge/IE image format data
caugner Aug 26, 2025
9b5bc6e
Add WebP subfeatures
caugner Aug 26, 2025
cedc106
Refine Opera data for WebP
caugner Aug 26, 2025
a13d724
Merge branch 'main' into 6971-image-formats
caugner Oct 14, 2025
f870710
Merge branch 'main' into 6971-image-formats
caugner Nov 18, 2025
67ca958
Move {media.formats => media-types}.image
caugner Dec 2, 2025
fc0bca8
Split media-types/image.json
caugner Dec 2, 2025
7386b16
Add spec url for BMP (Bitmap file)
caugner Dec 2, 2025
1757cd0
Merge branch 'main' into 6971-image-formats
caugner Dec 2, 2025
ab60b1c
Add media-types to code snippets, generate-types, data-folders
caugner Dec 8, 2025
a73cfff
Fix accidental "false" string
caugner Dec 8, 2025
d604185
refactor: rename {media-types => mediatypes}
caugner Dec 8, 2025
7210ced
Fix some media-types versions
caugner Dec 8, 2025
740db78
Fix notes array with single note
caugner Dec 8, 2025
c8eb716
Fix spec URL
caugner Dec 8, 2025
83f00a1
Add missing WebView entries for media types
caugner Dec 8, 2025
abdd0ec
Fix AVIF animation version for Edge
caugner Dec 8, 2025
8a19b48
Merge branch 'main' into 6971-image-formats
caugner Dec 8, 2025
c2b100b
Add fragments to media types spec URLs
caugner Dec 8, 2025
3cb3649
Add spec URL exceptions for media types
caugner Dec 8, 2025
d2e33a7
Replace APNG spec URL
caugner Dec 8, 2025
365d630
Apply suggestions from code review
caugner Dec 9, 2025
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
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ data:mathml:
- changed-files:
- any-glob-to-any-file:
- "mathml/**"
data:media:
- changed-files:
- any-glob-to-any-file:
- "media/**"
data:svg:
- changed-files:
- any-glob-to-any-file:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/system-file-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
- "!javascript/**.json"
- "!manifests/**.json"
- "!mathml/**.json"
- "!media/**.json"
- "!svg/**.json"
- "!webassembly/**.json"
- "!webdriver/**.json"
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"/javascript/*.json",
"/manifests/*.json",
"/mathml/*.json",
"/media/*.json",
"/svg/*.json",
"/webdriver/*.json",
"/webextensions/*.json"
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,14 @@ Data for [MathML](https://developer.mozilla.org/en-US/docs/Web/MathML) features,

- `elements` - Elements

### [`media`](./media)

Data for [Media format](https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats) features, including:

- `formats/image` - Image formats

An image format is considered supported if it displays correctly when used in an `<img>` element's `src` attribute, or as a CSS `background-image`.
Comment thread
caugner marked this conversation as resolved.
Outdated

### [`svg`](./svg)

Data for [SVG](https://developer.mozilla.org/en-US/docs/Web/SVG) features, including:
Expand Down
Loading
Loading