web icon indicating copy to clipboard operation
web copied to clipboard

Lightweight browser API bindings built around JS static interop.

Results 67 web issues
Sort by recently updated
recently updated
newest added

From `Credential` documentation: ``` /// The **`Credential`** interface of the /// [Credential Management API](https://developer.mozilla.org/en-US/docs/Web/API/Credential_Management_API) /// provides information about an entity (usually a user) normally as a /// prerequisite to a...

area-api-missing

In 1.0.0, some `SubtleCrypto` methods have untyped parameters, thus making them hard to use: E.g. `importKey()`: Before 1.0.0, it was possible to figure out and pass `KeyAlgorithm(name: 'AES-GCM')` as the...

area-api-missing

```dart external DataTransferItem operator [](int index); ``` https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItemList

area-api-bug

Hello I have a class ```dart import 'dart:async'; import 'dart:html'; class MessagePortStreamChannel with StreamChannelMixin implements StreamChannel { MessagePortStreamChannel({required this.port}) { _onReceiveMessageSubscription = port.onMessage.listen((message) { _in.add(message.data); }); _onPostMessageSubscription = _out.stream.listen((event) {...

type-enhancement
area-api-missing-event

On click it's opening the file instead of downloading it, wrong suggest here

with import 'dart:html' as html; was using this html.AnchorElement(href: url) // Set the download attribute to file name. ..setAttribute("download", "") // Trigger a click event on the anchor element to...

type-question

The following constants are missing from `NodeFilter`: https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker/whatToShow note that NodeFilter is defined as `JSFunction` so I am not sure how these constants would be mapped.

area-api-missing

I am trying to migrate from html package, and figured out that it is impossible to call postMessage() for iframe with content from another domain. ```dart myIFrame.contentWindow?.postMessage('aaa'.toJS, '*'.toJS); ``` The...

area-api-bug

When writing a Web worker using Dart, using the now deprecated `dart:html` package, it is possible to access the `WorkerGlobalScope` instance this way: ``` import 'dart:html'; // deprecated void test()...

type-question

How to migrate [NodeValidatorBuilder](https://api.flutter.dev/flutter/dart-html/NodeValidatorBuilder-class.html) from dart:html to web? And how to `setInnerHtml` with validator on web for HTMLHtmlElement?

area-api-missing