Skip to content
Permalink
Browse files
Added test for #968
  • Loading branch information
jzaefferer committed Mar 25, 2007
1 parent 06b8927 commit 707f23f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
@@ -85,7 +85,7 @@ <h2 id="userAgent"></h2>
<span id="utf8class2" class="台北"></span>
</form>
<b id="floatTest">Float test.</b>
<iframe id="iframe"></iframe>
<iframe id="iframe" name="iframe"></iframe>
</div>
</dl>

@@ -826,3 +826,12 @@ test("$().html().evalScripts() Eval's Scripts Twice in Firefox, see #975", funct
expect(1);
$("#main").html('<script type="text/javascript">ok( true, "execute script" );</script>').evalScripts();
});

test("$('<tag>') needs optional document parameter to ease cross-frame DOM wrangling, see #968", function() {
var f = frames["iframe"].document;
f.open();
f.write("<html><body></body></html>");
f.close();
$("<div>Testing</div>").appendTo(f.body);
ok( true, "passed" );
});

0 comments on commit 707f23f

Please sign in to comment.