1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/assert/element.hasAttribute.html
2024-06-01 13:30:03 +02:00

31 lines
606 B
HTML

<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa">bbb</b>
<a id="blabla" href="/" rel="nofollow">
<b>AAA</b><u id="ble">UUU</u>AAAAAAA
</a>
<a id="bb" href="/">BB</a>
<script>
function aa()
{
var a = document.getElementById('blabla').hasAttribute('rel');
console.assert(a, 'True');
}
function bb()
{
var b = document.getElementById('ble').hasAttribute('href');
console.assert(!b, 'False');
}
console.error('element.hasAttribute.html');
aa();
bb();
console.exit();
</script>
<button onclick="return aa()">blabla rel true</button>
<button onclick="return bb()">ble href false</button>
</body>
</html>