Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d3a71dec
Commit
d3a71dec
authored
May 30, 2018
by
Jacek Caban
Committed by
Alexandre Julliard
May 30, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use proper document mode for document fragment objects.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c36bbc35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
htmldoc.c
dlls/mshtml/htmldoc.c
+1
-0
documentmode.js
dlls/mshtml/tests/documentmode.js
+18
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
d3a71dec
...
...
@@ -5197,6 +5197,7 @@ static HRESULT create_document_fragment(nsIDOMNode *nsnode, HTMLDocumentNode *do
HTMLDOMNode_Init
(
doc_node
,
&
doc_frag
->
node
,
nsnode
,
&
HTMLDocumentNode_dispex
);
doc_frag
->
node
.
vtbl
=
&
HTMLDocumentFragmentImplVtbl
;
doc_frag
->
document_mode
=
lock_document_mode
(
doc_node
);
*
ret
=
doc_frag
;
return
S_OK
;
...
...
dlls/mshtml/tests/documentmode.js
View file @
d3a71dec
...
...
@@ -70,6 +70,23 @@ function test_doc_props() {
next_test
();
}
function
test_docfrag_props
()
{
var
docfrag
=
document
.
createDocumentFragment
();
function
test_exposed
(
prop
,
expect
)
{
if
(
expect
)
ok
(
prop
in
docfrag
,
prop
+
" not found in document fragent."
);
else
ok
(
!
(
prop
in
docfrag
),
prop
+
" found in document fragent."
);
}
var
v
=
document
.
documentMode
;
test_exposed
(
"compareDocumentPosition"
,
v
>=
9
);
next_test
();
}
function
test_window_props
()
{
function
test_exposed
(
prop
,
expect
)
{
if
(
expect
)
...
...
@@ -247,6 +264,7 @@ var tests = [
test_iframe_doc_mode
,
test_elem_props
,
test_doc_props
,
test_docfrag_props
,
test_window_props
,
test_javascript
,
test_xhr_props
,
...
...
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