blob: 6d0cc6bae3a4698fafb9677957027cdeb6ab1355 [file] [log] [blame]
import '../handler/json_wire/utils.dart' show jsonWireElementStr;
import '../handler/w3c/utils.dart' show w3cElementStr;
/// Common interface for web element, containing only the element id.
abstract class WebElement {
String /*!*/ get id;
Map<String, String> toJson() => {jsonWireElementStr: id, w3cElementStr: id};
}