I'm curious: what legitimate use cases exist for embedding a turing-complete scripting language into an image format?
ninja edit: It's also from a time when W3C started to lose focus and authority.
It's amazing that SVG was so successful despite this mess and also the confusion potential of CSS in SVG.
Browsers ignore scripts in external SVG images. Don't know if that is for security reasons (JS sandbox unreliable) or because a full isolated JS context per image would be to expensive...
The core issue iirc was that one of the major use cases for SVG was map/navigation systems where a number of environments required fully standardized systems. But they didn’t want to say implement a full browser stack”, so they just came up with their own “networking api” that was just “sockets!”.
A lot of this work predated html5, and the subsequent rationalization of web specs such that (for example) the xhr API was not fully specified, and it was not a separate specification from the rest of the browser stack, so SVG couldn’t just do what they could (in principle) do now.
The SVG WG was not the most functional - i recall that something a subset of the committee did at one point was to after the end of one person’s work day they rescheduled a meeting to later “that day” (while they were asleep) and took a vote without them present.
A number of other choices were made to the detriment of the spec for specific use cases (the various performance profiles have fundamentally incompatible rendering behavior rather than gradual decay, etc)
Funnily enough we did end up saying "implement a full browser stack" :/
PostScript, the printer file format, is Turing-complete, for different reasons.
Competing with flash?
SVG tries to be a lot of things, one of them was to be a full on interactive app.
That's how cursed enterprise software develops email clients and chat services. Just say no.
Since they can contain code, they can carry malicious code. PDFs have, in fact, been used for exploits. Meaning that you shouldn't really trust them. Which is a shame.
[1] https://googleprojectzero.blogspot.com/2021/12/a-deep-dive-i...
[2] https://techcrunch.com/2018/02/16/iphone-bug-telugu-unicode-...
Yes. Bugs. Bugs can be fixed.
By-design (mis)features can't be fixed. The only way to fix them is by removing the feature.
Unless you're agreeing that JS-in-PDFs is a bug, you're conflating fundamentally different issues.
Yes, removing JS support would get rid of potential security exploits. It doesn't change the fact that said exploits rely on bugs in the implementation.
Fixing other kinds of bugs is fairly straightforward. Update your toolchain, update your dependencies, use the right dependencies, avoid undefined behavior, etc. Fixing scripting issues means participating in an active arms race.
IMO it’s be nice to define a file format for PDFs main use (I think?), papers and documentation. PDF, scripting, but maybe the ability to zoom and pan figures?
PDF viewers can have a matching PDF/A mode where all non-PDF/A features are disabled.