1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[assert] element.className

This commit is contained in:
Witold Filipczyk 2024-04-12 17:11:25 +02:00
parent 974429611c
commit 442f119ffd

View File

@ -0,0 +1,29 @@
<html>
<body>
<a href="/home">BBB</a>
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
<a dir="rtl" id="blabla" href="/">
<b>AAA</b><u dir="auto" id="ble" title="test">UUU</u>AAAAAAA
</a>
<a id="bb" dir="blalalala" href="/">BB</a>
<script>
function aa()
{
console.assert(document.getElementById('aaaa').className === 'a b c', 'a b c');
}
function bb()
{
document.getElementById('aaaa').className = 'abc';
console.assert(document.getElementById('aaaa').className === 'abc', 'abc');
}
console.error('element.className.html');
aa();
bb();
console.exit(0);
</script>
<button onclick="return aa()">Click me!</button>
<button onclick="return bb()">Set className to abc</button>
</body>
</html>