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

Alexandre Julliard julliard at winehq.org
Wed Feb 21 18:39:41 CST 2018


Module: wine
Branch: master
Commit: 5ec6b8f807f61ee77b9a96d94798c8e3f3db7af4
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=5ec6b8f807f61ee77b9a96d94798c8e3f3db7af4

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Wed Feb 21 18:54:52 2018 +0100

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

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/tests/elements.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/tests/elements.js b/dlls/mshtml/tests/elements.js
index 089d356..53fdeab 100644
--- a/dlls/mshtml/tests/elements.js
+++ b/dlls/mshtml/tests/elements.js
@@ -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");




More information about the wine-cvs mailing list