OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/multipa ge/the-iframe-element.html#attr-iframe-name"> | |
5 <script src="../../resources/js-test.js"></script> | |
6 </head> | |
7 <body> | |
8 <iframe id="foo"></iframe> | |
9 <script> | |
10 description("Checks that the iframe's name is an empty string if unset."); | |
11 shouldBeEqualToString("frames[0].name", ""); | |
12 </script> | |
13 </body> | |
14 </html> | |
OLD | NEW |