Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / iframe-no-name.html
blobc332cc30101ec812a74120793a7750f8f104445e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/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>