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
67f182bf
Commit
67f182bf
authored
Jul 27, 2022
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Jul 27, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Implement nextElementSibling for Elements.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
06872bd8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
2 deletions
+29
-2
htmlelem.c
dlls/mshtml/htmlelem.c
+24
-2
dom.js
dlls/mshtml/tests/dom.js
+5
-0
No files found.
dlls/mshtml/htmlelem.c
View file @
67f182bf
...
...
@@ -6560,8 +6560,30 @@ static HRESULT WINAPI ElementTraversal_get_previousElementSibling(IElementTraver
static
HRESULT
WINAPI
ElementTraversal_get_nextElementSibling
(
IElementTraversal
*
iface
,
IHTMLElement
**
p
)
{
HTMLElement
*
This
=
impl_from_IElementTraversal
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
nsIDOMElement
*
nselem
=
NULL
;
HTMLElement
*
elem
;
HRESULT
hres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
if
(
!
This
->
dom_element
)
{
*
p
=
NULL
;
return
S_OK
;
}
nsIDOMElement_GetNextElementSibling
(
This
->
dom_element
,
&
nselem
);
if
(
!
nselem
)
{
*
p
=
NULL
;
return
S_OK
;
}
hres
=
get_element
(
nselem
,
&
elem
);
nsIDOMElement_Release
(
nselem
);
if
(
FAILED
(
hres
))
return
hres
;
*
p
=
&
elem
->
IHTMLElement_iface
;
return
S_OK
;
}
static
HRESULT
WINAPI
ElementTraversal_get_childElementCount
(
IElementTraversal
*
iface
,
LONG
*
p
)
...
...
dlls/mshtml/tests/dom.js
View file @
67f182bf
...
...
@@ -94,12 +94,17 @@ sync_test("ElementTraversal", function() {
"div.firstElementChild.outerHTML = "
+
div
.
firstElementChild
.
outerHTML
);
ok
(
div
.
lastElementChild
.
outerHTML
===
"<div>text</div>"
,
"div.lastElementChild.outerHTML = "
+
div
.
lastElementChild
.
outerHTML
);
ok
(
div
.
firstElementChild
.
nextElementSibling
.
outerHTML
===
"<script>/* */</script>"
,
"div.firstElementChild.nextElementSibling.outerHTML = "
+
div
.
firstElementChild
.
nextElementSibling
.
outerHTML
);
ok
(
div
.
lastElementChild
.
nextElementSibling
===
null
,
"div.lastElementChild.nextElementSibling = "
+
div
.
lastElementChild
.
nextElementSibling
);
div
.
innerHTML
=
"abc"
;
ok
(
div
.
firstElementChild
===
null
,
"div.firstElementChild = "
+
div
.
firstElementChild
);
ok
(
div
.
lastElementChild
===
null
,
"div.lastElementChild = "
+
div
.
lastElementChild
);
ok
(
!
(
"firstElementChild"
in
document
),
"firstElementChild found in document"
);
ok
(
!
(
"nextElementSibling"
in
document
),
"nextElementSibling found in document"
);
});
sync_test
(
"head"
,
function
()
{
...
...
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