2024-04-12 15:09:20 -04:00
|
|
|
<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();
|
2024-06-01 07:30:03 -04:00
|
|
|
console.exit();
|
2024-04-12 15:09:20 -04:00
|
|
|
</script>
|
|
|
|
<button onclick="return aa()">Click me!</button>
|
|
|
|
<button onclick="return bb()">Set lang to pl</button>
|
|
|
|
</body>
|
|
|
|
</html>
|