kaguranana-birthday-project/node_modules/classlist-polyfill/tests/remove.js
2021-12-12 18:49:32 -08:00

11 lines
332 B
JavaScript

QUnit.module("classList.remove");
QUnit.test("Removes duplicated instances of class", function(assert) {
var el = document.createElement("p"), cList = el.classList;
el.className = "ho ho ho"
cList.remove("ho");
assert.ok(!cList.contains("ho"), "Should remove all instances of 'ho'");
assert.strictEqual(el.className, "")
});