Issue metadata
Sign in to add a comment
|
DOMSelection::deleteFromDocument() should not use VisibleSelection |
||||||||||||||||||||||||
Issue description
From the spec[1], DOMSelection::deleteFromDocument() should be equivalent to
Selection.prototype.deleteFromDocument = function() {
if (this.rangeCount === 0)
return;
this.getRangeAt(0).deleteContents();
};
https://www.w3.org/TR/selection-api/#dom-selection-deletefromdocument
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by tkent@chromium.org
, Jun 5 2017Status: Duplicate (was: Available)