dart:html library
The Dart HTML library.
Properties
final HtmlDocument document #
The top-level Document object.
HtmlDocument get document => JS('HtmlDocument', 'document');
Functions
Future<SendPort> spawnDomFunction(Function f) #
Future<SendPort> spawnDomFunction(Function f) => new Future.value(IsolateNatives.spawnDomFunction(f));
ElementList queryAll(String selector) #
ElementList queryAll(String selector) => document.queryAll(selector);