frame-with-then.html (576B)
1 <!doctype html> 2 <html> 3 <script> 4 if (location.search == "?setdomain") { 5 document.domain = document.domain; 6 } 7 </script> 8 <body> 9 <!--- Some frames to test ordering --> 10 <iframe name="a"></iframe> 11 <!-- A subframe to test "then" behavior --> 12 <iframe name="then"></iframe> 13 <iframe name="b"></iframe> 14 <!-- Two subframes with names corresponding to IDL-defined properties; one 15 a cross-origin-exposed property and one not exposed cross-origin --> 16 <iframe name="close"></iframe> 17 <iframe name="open"></iframe> 18 </body> 19 </html>