relrelb
relrelb
[`DOMString`](https://developer.mozilla.org/en-US/docs/Web/API/DOMString), [`USVString`](https://developer.mozilla.org/en-US/docs/Web/API/USVString), [`CSSOMString`](https://developer.mozilla.org/en-US/docs/Web/API/CSSOMString) and [`ByteString`](https://developer.mozilla.org/en-US/docs/Web/API/ByteString) are currently mapped to simply `string`: https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/1fd97d19c109bc6ec2780605709f6e819356e942/src/helpers.ts#L53 However it doesn't include objects that can be stringified using the [`ToString`](https://tc39.es/ecma262/#sec-tostring) abstract operation. For example, the following...
* Replace consecutive `push`es with `extend` - This should be slightly more efficient. * Avoid some `Vec::with_capacity`. * De-duplicate code.
Unconditionally represet percentages as `f64` between `0.0` and `100.0`.
Main changes: * Merge `ColorTransformParams` into `ColorTransformObject`, as it's only relevant for AVM1. * Make `BitmapData::color_transform` work with a generic `ColorTransform`, which uses fixed-point arithmetic. Note that Ruffle still calculates...
Use `Value::to_primitive` instead.
- [x] I'm the package's author and/or maintainer. - [x] I have have read [the docs][1]. - [x] I have tagged a release with a [semver][2] version number. - [x]...
Depends on https://github.com/denoland/deno_graph/pull/212. Fixes #17645.
## Steps to reproduce behavior Consider the following code: ```ts // @deno-types='https://esm.sh/@types/node' import 'https://esm.sh/colors'; ``` Deno's LSP suggests (justifiably) that both URLs are redirected, and provides a quick fix to...
In Flash Player, it seems that `hitTest` with `shapeFlag` set to `true` returns `true` only when a hit occurs in both the current frame and the previous frame. However Ruffle...