summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests/test_dom.js
blob: 97188438498118852d0d00bc4e3e5abe2e213c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Tests the DOM methods
//

var box = console.getElementById('HBox');
var btn = box.child('RunButton');

print('Button: ');
println(btn);

println( 'Property: enabled' );
print( 'hasAttribute: ' );
println( btn.hasAttribute('enabled') );
print( 'getAttribute: ' );
println( btn.getAttribute('enabled') );
print( 'setAttribute: ' );
println( btn.setAttribute('enabled', false) );
print( 'getAttribute: ' );
println( btn.getAttribute('enabled') );

println();
println( 'Now the console will be displayed with button disabled' );