mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
function test() {
|
|
var ids = {};
|
|
Array.forEach(document.querySelectorAll("[id]"), function (node) {
|
|
var id = node.id;
|
|
ok(!(id in ids), id + " should be unique");
|
|
ids[id] = null;
|
|
});
|
|
}
|