OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p id="description"></p> | 7 <p id="description"></p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <script> | 9 <script> |
10 description('HTMLTextAreaElement.wrap reflects the wrap="" attribute.<br>It is n
ot "limited to only known values", and it is a DOMString attribute which means i
t just returns the content attributes\'s value directly.'); | 10 description('HTMLTextAreaElement.wrap reflects the wrap="" attribute.<br>It is n
ot "limited to only known values", and it is a DOMString attribute which means i
t just returns the content attributes\'s value directly.'); |
11 | 11 |
12 | 12 |
13 var textArea = document.createElement('textarea'); | 13 var textArea = document.createElement('textarea'); |
14 document.body.appendChild(textArea); | 14 document.body.appendChild(textArea); |
(...skipping 22 matching lines...) Expand all Loading... |
37 shouldBe('textArea.wrap', "'foo'"); | 37 shouldBe('textArea.wrap', "'foo'"); |
38 | 38 |
39 debug(''); | 39 debug(''); |
40 </script> | 40 </script> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
43 | 43 |
44 | 44 |
45 | 45 |
46 | 46 |
OLD | NEW |