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

[assert] element.lang

This commit is contained in:
Witold Filipczyk 2024-04-12 21:09:20 +02:00
parent 01c29b3d42
commit b161c71bec

View File

@ -0,0 +1,30 @@
<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa" lang="en">bbb</b>
<a id="blabla" href="/">
<b>AAA</b><u id="ble" title="test">UUU</u>AAAAAAA
</a>
<a id="bb" href="/">BB</a>
<script>
function testaa(expected)
{
var x = document.getElementById('aaaa').lang;
console.assert(x === expected, expected);
}
function bb()
{
document.getElementById('aaaa').lang = 'pl';
testaa('pl');
}
console.error('element.lang.html');
testaa('en');
bb();
console.exit(0);
</script>
<button onclick="return aa()">Click me!</button>
<button onclick="return bb()">Set lang to pl</button>
</body>
</html>