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
5b1af5b7
Commit
5b1af5b7
authored
Nov 17, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added get_style implementation.
parent
1447e6f6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+6
-2
htmlstyle.c
dlls/mshtml/htmlstyle.c
+0
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
No files found.
dlls/mshtml/Makefile.in
View file @
5b1af5b7
...
@@ -19,6 +19,7 @@ C_SRCS = \
...
@@ -19,6 +19,7 @@ C_SRCS = \
htmlinput.c
\
htmlinput.c
\
htmlnode.c
\
htmlnode.c
\
htmlselect.c
\
htmlselect.c
\
htmlstyle.c
\
htmltextcont.c
\
htmltextcont.c
\
htmltextarea.c
\
htmltextarea.c
\
install.c
\
install.c
\
...
...
dlls/mshtml/htmlelem.c
View file @
5b1af5b7
...
@@ -243,8 +243,12 @@ static HRESULT WINAPI HTMLElement_get_parentElement(IHTMLElement *iface, IHTMLEl
...
@@ -243,8 +243,12 @@ static HRESULT WINAPI HTMLElement_get_parentElement(IHTMLElement *iface, IHTMLEl
static
HRESULT
WINAPI
HTMLElement_get_style
(
IHTMLElement
*
iface
,
IHTMLStyle
**
p
)
static
HRESULT
WINAPI
HTMLElement_get_style
(
IHTMLElement
*
iface
,
IHTMLStyle
**
p
)
{
{
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
/* FIXME: Store IHTMLStyle instead of creating a new instance in every call. */
*
p
=
HTMLStyle_Create
();
return
S_OK
;
}
}
static
HRESULT
WINAPI
HTMLElement_put_onhelp
(
IHTMLElement
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLElement_put_onhelp
(
IHTMLElement
*
iface
,
VARIANT
v
)
...
...
dlls/mshtml/htmlstyle.c
0 → 100644
View file @
5b1af5b7
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
5b1af5b7
...
@@ -329,6 +329,7 @@ void set_document_bscallback(HTMLDocument*,BSCallback*);
...
@@ -329,6 +329,7 @@ void set_document_bscallback(HTMLDocument*,BSCallback*);
IHlink
*
Hlink_Create
(
void
);
IHlink
*
Hlink_Create
(
void
);
IHTMLSelectionObject
*
HTMLSelectionObject_Create
(
nsISelection
*
);
IHTMLSelectionObject
*
HTMLSelectionObject_Create
(
nsISelection
*
);
IHTMLTxtRange
*
HTMLTxtRange_Create
(
nsISelection
*
);
IHTMLTxtRange
*
HTMLTxtRange_Create
(
nsISelection
*
);
IHTMLStyle
*
HTMLStyle_Create
(
void
);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLBodyElement_Create
(
HTMLElement
*
);
void
HTMLBodyElement_Create
(
HTMLElement
*
);
...
...
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