TermDOM 0.1.2
63 commits since 0.1.1.
New
dialog.showModal(): the top layer,::backdrop,:modal, focus containment, and Escape firingcancel. Modal dialogs paint over the page and block interaction behind them. (#32)- The Popover API:
popoverattribute states,showPopover()/hidePopover()/togglePopover(),popovertargetinvokers,beforetoggle/toggleevents, light dismiss, stacking, and:popover-open. (#38) border-radius: the shorthand and all four longhands, including slash syntax. A corner with a nonzero radius renders with the rounded box-drawing glyph. (#31)- CSS logical properties: the
margin/padding/inset/borderblock and inline families,block-size/inline-sizewith min/max variants, andtext-align: start/end, resolved againstdirectionby cascade order. (#33) beforeunload:window.close()and Ctrl-C dispatch a cancelableBeforeUnloadEvent, so an app can ask before quitting. (#29)<kbd>renders as a bold bracketed keycap. (#28)- Terminal width measurement: where a terminal doesn't negotiate mode 2027, the engine measures ambiguous glyph advances (VS16 emoji, East Asian Ambiguous, Arabic presentation forms) with in-frame cursor queries and corrects itself, fixing emoji misalignment in Terminal.app. (#37)
window.scrollXandpageXOffsetread 0.
Fixed
- Preserved spaces no longer collapse at inline element boundaries under
white-space: pre. (#36) - Attribute values containing selector metacharacters parse correctly — thanks @yowainwright for the first outside contribution. (#39)
text-align: endmaps to the left edge underdirection: rtl.- Absolutely positioned boxes with both insets and
margin: autocenter per CSS 2.1 instead of stretching. - Enter activates checkboxes, as Space does.
- The engine no longer uses
Buffer; browser bundles need no polyfill, andProcessLikeacceptsUint8Array/ArrayBufferchunks.
Examples
weather.ts: an Open-Meteo forecast with hourly charts drawn in eighth-blocks.popover.ts: a menu bar where every menu is a declarative popover.
Docs
- The README explains how the engine works;
COMPATIBILITY.mdclassifies every CSS property as measured, not applicable to a character grid, or not yet implemented; the conformance docs are regenerated (94,816 DOM subtests passing, 3,124 CSSOM).