Ticket #9504: 9504-specified.html
| File 9504-specified.html, 482 bytes (added by , 12 years ago) |
|---|
| Line | |
|---|---|
| 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <script src="../../../ckeditor.js"></script> |
| 5 | <title>tc</title> |
| 6 | </head> |
| 7 | <body> |
| 8 | <table> |
| 9 | <tr> |
| 10 | <th style="background-color:red">aa</th> |
| 11 | </tr> |
| 12 | </table> |
| 13 | <script> |
| 14 | var element = document.getElementsByTagName( 'th' )[ 0 ], |
| 15 | attributes = element.attributes; |
| 16 | |
| 17 | console.log( element.attributes.length ); |
| 18 | |
| 19 | for ( var n = 0; n < attributes.length; n++ ) { |
| 20 | var attribute = attributes[ n ]; |
| 21 | console.log( attribute.specified ); |
| 22 | } |
| 23 | |
| 24 | </script> |
| 25 | </body> |
| 26 | </html> |
