New issue
Advanced search Search tips

Issue 729497 link

Starred by 1 user

Issue metadata

Status: Duplicate
Merged: issue 708091
Owner: ----
Closed: Jun 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Task



Sign in to add a comment

DOMSelection::deleteFromDocument() should not use VisibleSelection

Project Member Reported by yosin@chromium.org, Jun 5 2017

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
 

Comment 1 by tkent@chromium.org, Jun 5 2017

Mergedinto: 708091
Status: Duplicate (was: Available)

Sign in to add a comment