File: Element-removeAttribute.html

package info (click to toggle)
firefox 144.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,637,504 kB
  • sloc: cpp: 7,576,692; javascript: 6,430,831; ansic: 3,748,119; python: 1,398,978; xml: 628,810; asm: 438,679; java: 186,194; sh: 63,212; makefile: 19,159; objc: 13,086; perl: 12,986; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (58 lines) | stat: -rw-r--r-- 2,138 bytes parent folder | download | duplicates (27)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<meta charset="utf-8">
<title>Element.prototype.removeAttribute</title>
<link rel=help href="https://dom.spec.whatwg.org/#dom-element-removeattribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
"use strict";

test(() => {

  const el = document.createElement("p");
  el.setAttribute("x", "first");
  el.setAttributeNS("foo", "x", "second");

  assert_equals(el.attributes.length, 2);
  assert_equals(el.getAttribute("x"), "first");
  assert_equals(el.getAttributeNS(null, "x"), "first");
  assert_equals(el.getAttributeNS("foo", "x"), "second");

  // removeAttribute removes the first attribute with name "x" that
  // we set on the element, irrespective of namespace.
  el.removeAttribute("x");

  // The only attribute remaining should be the second one.
  assert_equals(el.getAttribute("x"), "second");
  assert_equals(el.getAttributeNS(null, "x"), null);
  assert_equals(el.getAttributeNS("foo", "x"), "second");
  assert_equals(el.attributes.length, 1, "one attribute");

}, "removeAttribute should remove the first attribute, irrespective of namespace, when the first attribute is " +
   "not in a namespace");

test(() => {

  const el = document.createElement("p");
  el.setAttributeNS("foo", "x", "first");
  el.setAttributeNS("foo2", "x", "second");

  assert_equals(el.attributes.length, 2);
  assert_equals(el.getAttribute("x"), "first");
  assert_equals(el.getAttributeNS("foo", "x"), "first");
  assert_equals(el.getAttributeNS("foo2", "x"), "second");

  // removeAttribute removes the first attribute with name "x" that
  // we set on the element, irrespective of namespace.
  el.removeAttribute("x");

  // The only attribute remaining should be the second one.
  assert_equals(el.getAttribute("x"), "second");
  assert_equals(el.getAttributeNS("foo", "x"), null);
  assert_equals(el.getAttributeNS("foo2", "x"), "second");
  assert_equals(el.attributes.length, 1, "one attribute");

}, "removeAttribute should remove the first attribute, irrespective of namespace, when the first attribute is " +
   "in a namespace");
</script>