Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
40716d5
Fix unused functor parameter warnings (warning 67)
balat Jul 16, 2026
a2e01ef
Add support for the s element
balat Jul 16, 2026
3b06685
Add support for the bdi element
balat Jul 16, 2026
fce5425
Add support for the search element
balat Jul 16, 2026
1b91cce
Add support for the data element
balat Jul 16, 2026
1237f38
Add support for the track element
balat Jul 16, 2026
b4704e3
Add support for the slot element
balat Jul 16, 2026
d9ce29d
Add missing global attributes
balat Jul 16, 2026
af331bc
Add the microdata global attributes
balat Jul 16, 2026
f1148ab
Add the part and exportparts global attributes
balat Jul 16, 2026
ba626e7
Add popover target and invoker command attributes
balat Jul 16, 2026
2837d66
Add loading, decoding, fetchpriority, srcdoc and allow attributes
balat Jul 16, 2026
ae969ea
Add as, imagesrcset, imagesizes, blocking and nomodule attributes
balat Jul 16, 2026
25fd2f6
Add the ping attribute on a and area
balat Jul 16, 2026
716020e
Add dirname and capture attributes on form controls
balat Jul 16, 2026
665b1f8
Add ol type, th abbr, dialog closedby and meta media attributes
balat Jul 16, 2026
888e6b1
Add playsinline and remote/PiP playback control attributes
balat Jul 16, 2026
65fec09
Add the declarative shadow DOM attributes on template
balat Jul 16, 2026
04f26e4
Add pointer, wheel and auxclick event handler attributes
balat Jul 16, 2026
406f887
Add missing global event handler attributes
balat Jul 16, 2026
08539d4
Add window event handler attributes on body
balat Jul 16, 2026
2cb5b3e
Add JSX tests for the new attribute value parsers
balat Jul 16, 2026
b98df43
Do not allow dir=auto on the bdo element
balat Jul 16, 2026
bbb16ed
Allow method=dialog and add the newer sandbox tokens
balat Jul 16, 2026
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
57 changes: 57 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,62 @@
# NEXT

* Fix the development-profile build with recent compilers: anonymize
unused functor parameters in printer and functor signatures
(warning 67)
* Add the global attributes `popover` (`a_popover`), `inert` (`a_inert`),
`enterkeyhint` (`a_enterkeyhint`), `autocapitalize` (`a_autocapitalize`),
`autocorrect` (`a_autocorrect`), `writingsuggestions`
(`a_writingsuggestions`), `nonce` (`a_nonce`), `slot` (`a_slot`) and
`is` (`a_is`); allow `` `Auto`` for the `dir` attribute
* Add the microdata global attributes `itemscope`, `itemtype`, `itemid`,
`itemprop` and `itemref`
* Add the `part` and `exportparts` global attributes (CSS Shadow Parts)
* Add the `popovertarget` and `popovertargetaction` attributes on
buttons and inputs, and the `command` and `commandfor` attributes
(Invoker Commands) on buttons
* Add the `loading`, `decoding` and `fetchpriority` attributes on images,
and the `srcdoc`, `allow` and `loading` attributes on iframes; also
allow `crossorigin`, `usemap` and `referrerpolicy` on images
* Add the `as` (`a_as`), `imagesrcset` and `imagesizes` attributes on
links, the `nomodule` attribute on scripts, and the `blocking`
attribute on links, scripts and styles. The `Wrapped_functions`
module type has a new `string_of_blocking` function.
* Add the `ping` attribute on `a` and `area`; also allow
`referrerpolicy` there
* Add the `dirname` attribute on inputs and textareas and the `capture`
attribute (W3C HTML Media Capture) on inputs; also allow
`autocomplete` on selects and textareas
* Add the `type` attribute of ordered lists (`a_ol_type`), the `abbr`
attribute on th cells, the `closedby` attribute on dialogs, and allow
`media` on meta. The `Wrapped_functions` module type has a new
`string_of_ol_type` function.
* Add the `playsinline` and `disablepictureinpicture` attributes on
videos and the `disableremoteplayback` attribute on audios and videos
* Add the declarative shadow DOM attributes on templates:
`shadowrootmode`, `shadowrootdelegatesfocus`, `shadowrootclonable`
and `shadowrootserializable`
* Add the pointer event handler attributes (`a_onpointerdown`, etc.),
`a_onwheel` and `a_onauxclick`
* Add the missing global event handler attributes: `a_onbeforeinput`,
`a_onbeforematch`, `a_onbeforetoggle`, `a_oncancel`, `a_oncontextlost`,
`a_oncontextrestored`, `a_oncopy`, `a_oncut`, `a_onpaste`,
`a_oncuechange`, `a_onscrollend`, `a_onsecuritypolicyviolation`,
`a_onslotchange` and `a_ontoggle`
* Add the window event handler attributes `a_onlanguagechange`,
`a_onrejectionhandled` and `a_onunhandledrejection` on body
* Allow the `dialog` value for the `method` and `formmethod` attributes,
and add the newer `sandbox` tokens (`allow-downloads`, `allow-modals`,
`allow-orientation-lock`, `allow-popups-to-escape-sandbox`,
`allow-presentation`, `allow-top-navigation-by-user-activation`,
`allow-top-navigation-to-custom-protocols`)
* Add support for the `s` element
* Add support for the `bdi` element
* Add support for the `search` element
* Add support for the `data` element
* Add support for the `slot` element
* Add support for the `track` element and its `kind`, `srclang`
(as `a_track_srclang`) and `default` attributes; `audio` and `video`
now accept an optional `?tracks` argument
* Fix typo `whitout` in type definition
(#324 by Martin @MBodin Bodin)
* Add support for the clip-path presentation attribute
Expand Down
Loading
Loading