Re: [whatwg/dom] element.getAttributeNames() spec doesn't match wpt and browsers (#985)

The namespace "URL" is not included in the qualified name, only the namespace prefix is. There is no namespace prefix in
```js
element.setAttributeNS('namespace', 'nametwo', 'valuetwo');
```
There is in the wpt test:
```js
  el.setAttributeNS("dummy2", "dummy:foo", "bar");
  assert_equals(el.getAttributeNames()[3], "dummy:foo");
```

... so I think you just misread.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/985#issuecomment-856499192

Received on Tuesday, 8 June 2021 06:47:14 UTC