https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b06fee616a2c20710cbfe8a031f2c4523870ec17 authored by Yoshifumi Inoue on 22 March 2018, 04:00:01 UTC
Make Range::intersectsNode() to follow the spec
Tip revision: b06fee6
Element-removeAttributeNS.html
<!DOCTYPE html>
<title>Element.removeAttributeNS</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="attributes.js"></script>
<div id="log"></div>
<script>
var XML = "http://www.w3.org/XML/1998/namespace"

test(function() {
  var el = document.createElement("foo")
  el.setAttributeNS(XML, "a:bb", "pass")
  attr_is(el.attributes[0], "pass", "bb", XML, "a", "a:bb")
  el.removeAttributeNS(XML, "a:bb")
  assert_equals(el.attributes.length, 1)
  attr_is(el.attributes[0], "pass", "bb", XML, "a", "a:bb")
}, "removeAttributeNS should take a local name.")
</script>
back to top