Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ed11dbab
Commit
ed11dbab
authored
Jan 10, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added more range tests.
parent
0bc9f9a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
dom.c
dlls/mshtml/tests/dom.c
+22
-2
No files found.
dlls/mshtml/tests/dom.c
View file @
ed11dbab
...
...
@@ -33,8 +33,10 @@
static
const
char
doc_blank
[]
=
"<html></html>"
;
static
const
char
doc_str1
[]
=
"<html><body>test</body></html>"
;
static
const
char
doc_str2
[]
=
static
const
char
range_test_str
[]
=
"<html><body>test
\n
a<font size=
\"
2
\"
>bc
\t
123<br /> it's
\r\n
\t
</font>text<br /></body></html>"
;
static
const
char
range_test2_str
[]
=
"<html><body>abc<hr />123</body></html>"
;
static
const
char
elem_test_str
[]
=
"<html><head><title>test</title><style>.body { margin-right: 0px; }</style>"
"<body><a href=
\"
http://test
\"
name=
\"
x
\"
>link</a><input />"
...
...
@@ -940,6 +942,23 @@ static void test_txtrange(IHTMLDocument2 *doc)
IHTMLTxtRange_Release
(
range
);
}
static
void
test_txtrange2
(
IHTMLDocument2
*
doc
)
{
IHTMLTxtRange
*
range
;
range
=
test_create_body_range
(
doc
);
test_range_text
(
range
,
"abc
\r\n\r\n
123"
);
test_range_move
(
range
,
characterW
,
5
,
5
);
test_range_moveend
(
range
,
characterW
,
1
,
1
);
test_range_text
(
range
,
"2"
);
test_range_move
(
range
,
characterW
,
-
3
,
-
3
);
test_range_moveend
(
range
,
characterW
,
3
,
3
);
test_range_text
(
range
,
"c
\r\n\r\n
1"
);
IHTMLTxtRange_Release
(
range
);
}
static
void
test_compatmode
(
IHTMLDocument2
*
doc
)
{
IHTMLDocument5
*
doc5
;
...
...
@@ -1441,7 +1460,8 @@ START_TEST(dom)
CoInitialize
(
NULL
);
run_domtest
(
doc_str1
,
test_doc_elem
);
run_domtest
(
doc_str2
,
test_txtrange
);
run_domtest
(
range_test_str
,
test_txtrange
);
run_domtest
(
range_test2_str
,
test_txtrange2
);
run_domtest
(
elem_test_str
,
test_elems
);
run_domtest
(
doc_blank
,
test_defaults
);
run_domtest
(
indent_test_str
,
test_indent
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment