Re: [1/3] mshtml: Add test suite for IHTMLLocation
aeikum(a)codeweavers.com wrote:
--- dlls/mshtml/tests/Makefile.in | 1 + dlls/mshtml/tests/htmllocation.c | 383 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 384 insertions(+), 0 deletions(-) create mode 100644 dlls/mshtml/tests/htmllocation.c
diff --git a/dlls/mshtml/tests/Makefile.in b/dlls/mshtml/tests/Makefile.in index 06c6824..dc86c18 100644 --- a/dlls/mshtml/tests/Makefile.in +++ b/dlls/mshtml/tests/Makefile.in @@ -9,6 +9,7 @@ CTESTS = \ dom.c \ events.c \ htmldoc.c \ + htmllocation.c \ misc.c \ protocol.c \ script.c diff --git a/dlls/mshtml/tests/htmllocation.c b/dlls/mshtml/tests/htmllocation.c new file mode 100644 index 0000000..c3a5e82 --- /dev/null +++ b/dlls/mshtml/tests/htmllocation.c @@ -0,0 +1,383 @@ +/* + * Copyright 2009 Andrew Eikum for CodeWeavers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ +
Hi, Andrew. This series is broken, patch body is formatted.
participants (2)
-
Andrew Eikum -
Nikolay Sivov