Open masayuki-nakano opened 3 years ago
When I write tests for contenteditable, I use document.querySelector("div[contenteditable]") to retrieve the element. However, Element.editContext does not affect to any attributes. So it might be better to add new pseudo class.
contenteditable
document.querySelector("div[contenteditable]")
Element.editContext
that's great point! we'll discuss and get back to you
When I write tests for
contenteditable
, I usedocument.querySelector("div[contenteditable]")
to retrieve the element. However,Element.editContext
does not affect to any attributes. So it might be better to add new pseudo class.