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:
parent
53a06709eb
commit
1de2de8b1c
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user