mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[assert] element.lang
This commit is contained in:
parent
01c29b3d42
commit
b161c71bec
30
test/ecmascript/assert/element.lang.html
Normal file
30
test/ecmascript/assert/element.lang.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user