onInlineStyleInvalidated property

Stream<List<NodeId>> get onInlineStyleInvalidated

Fired when Element's inline style is modified via a CSS property modification.

Implementation

Stream<List<NodeId>> get onInlineStyleInvalidated => _client.onEvent
    .where((event) => event.name == 'DOM.inlineStyleInvalidated')
    .map(
      (event) => (event.parameters['nodeIds'] as List)
          .map((e) => NodeId.fromJson(e as int))
          .toList(),
    );