mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 07:15:36 -04:00
11 lines
223 B
JavaScript
11 lines
223 B
JavaScript
function test() {
|
|
var ids = {};
|
|
Array.prototype.forEach.call(document.querySelectorAll("[id]"), function(
|
|
node
|
|
) {
|
|
var id = node.id;
|
|
ok(!(id in ids), id + " should be unique");
|
|
ids[id] = null;
|
|
});
|
|
}
|