<span id="utf8class2" class="台北"></span>
</form>
<b id="floatTest">Float test.</b>
- <iframe id="iframe"></iframe>
+ <iframe id="iframe" name="iframe"></iframe>
</div>
</dl>
expect(1);\r
$("#main").html('<script type="text/javascript">ok( true, "execute script" );</script>').evalScripts();\r
});\r
+\r
+test("$('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968", function() {\r
+ var f = frames["iframe"].document;\r
+ f.open();\r
+ f.write("<html><body></body></html>");\r
+ f.close();\r
+ $("<div>Testing</div>").appendTo(f.body);\r
+ ok( true, "passed" );\r
+});
\ No newline at end of file