1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[test] getAttribute(null) === null

This commit is contained in:
Witold Filipczyk 2024-09-19 19:10:26 +02:00
parent 53a06709eb
commit 1de2de8b1c

View File

@ -20,6 +20,8 @@ function bb()
{
var b = document.getElementById('ble').getAttribute('href');
console.assert(b === null, b);
var c = document.getElementById('ble').getAttribute(null);
console.assert(c === null, c);
}
console.error('element.getAttribute.html');