You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
531 B
23 lines
531 B
//
|
|
// 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' );
|