(node, type)
| 29 | let assertConsoleErrorDev; |
| 30 | |
| 31 | function dispatchEventOnNode(node, type) { |
| 32 | node.dispatchEvent(new Event(type, {bubbles: true, cancelable: true})); |
| 33 | } |
| 34 | |
| 35 | function isValueDirty(node) { |
| 36 | // Return the "dirty value flag" as defined in the HTML spec. Cast to text |
no outgoing calls
no test coverage detected