New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 711562 link

Starred by 3 users

Issue metadata

Status: Fixed
Owner:
Last visit > 30 days ago
Closed: Apr 2017
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug

Blocking:
issue 662005
issue 651744



Sign in to add a comment

Node.prototype.baseURI should not be nullable

Project Member Reported by tkent@chromium.org, Apr 14 2017

Issue description

For example,
  var xmlDoc = document.implementation.createDocument(null, "", null);
  xmlDoc.documentURI; // Chromium correctly returns "about:blank"
  xmlDoc.baseURI; // Chromium returns null.  Safari and Firefox return "about:blank"

Our definition in Node.idl is:
 readonly attribute DOMString? baseURI;

But the specification says:
 readonly attribute USVString baseURI;


This is a reason of two failures in http://w3c-test.org/dom/interfaces.html .

I don't think we need intent-to-ship for this.

 

Comment 1 by tkent@chromium.org, Apr 14 2017

Blocking: 662005

Comment 2 by l...@chromium.org, Apr 19 2017

Owner: l...@chromium.org
Status: Started (was: Available)

Comment 4 by l...@chromium.org, Apr 20 2017

Status: Fixed (was: Started)

Sign in to add a comment