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

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2018-02-21 18:54:52 +01:00 committed by Alexandre Julliard
parent 164517fe57
commit 5ec6b8f807
1 changed files with 1 additions and 1 deletions

View File

@ -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");