From: Gabriel Ivăncescu gabrielopcode@gmail.com
Signed-off-by: Gabriel Ivăncescu gabrielopcode@gmail.com --- dlls/mshtml/tests/documentmode.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/mshtml/tests/documentmode.js b/dlls/mshtml/tests/documentmode.js index fe272f0f08a..ae8212f0c48 100644 --- a/dlls/mshtml/tests/documentmode.js +++ b/dlls/mshtml/tests/documentmode.js @@ -486,10 +486,10 @@ sync_test("builtin_obj", function() { enumerator.moveNext(); ok(enumerator.atEnd(), "enumerator not at end"); }else { - elem = f.call.call(f, document, "div"); + elem1 = f.call.call(f, document, "div"); f = f.bind(document); - elem = f.apply(null, ["style"]); - document.body.appendChild(elem); + elem1 = f.apply(null, ["style"]); + document.body.appendChild(elem1);
try { var enumerator = new Enumerator(document.getElementsByTagName("style"));