Commit 5ec6b8f8 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Fixed copy&paste typo in createDocumentFragment call.

parent 164517fe
......@@ -199,7 +199,7 @@ function test_document_owner() {
node = document.createElement("test");
ok(node.ownerDocument === document, "element.ownerDocument = " + node.ownerDocument);
node = document.createDocumentFragment("test");
node = document.createDocumentFragment();
ok(node.ownerDocument === document, "fragment.ownerDocument = " + node.ownerDocument);
node = document.createTextNode("test");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment