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
574becbf
Commit
574becbf
authored
Mar 28, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLTableCell interface stub implementation.
parent
fb1640fb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
1 deletion
+8
-1
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+2
-0
htmltablecell.c
dlls/mshtml/htmltablecell.c
+0
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+3
-0
dom.c
dlls/mshtml/tests/dom.c
+2
-1
No files found.
dlls/mshtml/Makefile.in
View file @
574becbf
...
...
@@ -44,6 +44,7 @@ C_SRCS = \
htmlstyleelem.c
\
htmlstylesheet.c
\
htmltable.c
\
htmltablecell.c
\
htmltablerow.c
\
htmltextarea.c
\
htmltextcont.c
\
...
...
dlls/mshtml/htmlelem.c
View file @
574becbf
...
...
@@ -51,6 +51,7 @@ static const WCHAR scriptW[] = {'S','C','R','I','P','T',0};
static
const
WCHAR
selectW
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
styleW
[]
=
{
'S'
,
'T'
,
'Y'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
tableW
[]
=
{
'T'
,
'A'
,
'B'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
tdW
[]
=
{
'T'
,
'D'
,
0
};
static
const
WCHAR
textareaW
[]
=
{
'T'
,
'E'
,
'X'
,
'T'
,
'A'
,
'R'
,
'E'
,
'A'
,
0
};
static
const
WCHAR
title_tagW
[]
=
{
'T'
,
'I'
,
'T'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
trW
[]
=
{
'T'
,
'R'
,
0
};
...
...
@@ -76,6 +77,7 @@ static const tag_desc_t tag_descs[] = {
{
selectW
,
HTMLSelectElement_Create
},
{
styleW
,
HTMLStyleElement_Create
},
{
tableW
,
HTMLTable_Create
},
{
tdW
,
HTMLTableCell_Create
},
{
textareaW
,
HTMLTextAreaElement_Create
},
{
title_tagW
,
HTMLTitleElement_Create
},
{
trW
,
HTMLTableRow_Create
}
...
...
dlls/mshtml/htmltablecell.c
0 → 100644
View file @
574becbf
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
574becbf
...
...
@@ -102,6 +102,7 @@ typedef struct event_target_t event_target_t;
XDIID(DispHTMLStyleElement) \
XDIID(DispHTMLStyleSheetsCollection) \
XDIID(DispHTMLTable) \
XDIID(DispHTMLTableCell) \
XDIID(DispHTMLTableRow) \
XDIID(DispHTMLTextAreaElement) \
XDIID(DispHTMLTitleElement) \
...
...
@@ -167,6 +168,7 @@ typedef struct event_target_t event_target_t;
XIID(IHTMLTable) \
XIID(IHTMLTable2) \
XIID(IHTMLTable3) \
XIID(IHTMLTableCell) \
XIID(IHTMLTableRow) \
XIID(IHTMLTextAreaElement) \
XIID(IHTMLTextContainer) \
...
...
@@ -779,6 +781,7 @@ HRESULT HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElemen
HRESULT
HTMLScriptElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLSelectElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLTable_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLTableCell_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLTableRow_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLTextAreaElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLTitleElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/tests/dom.c
View file @
574becbf
...
...
@@ -280,6 +280,7 @@ static const IID * const tr_iids[] = {
static
const
IID
*
const
td_iids
[]
=
{
ELEM_IFACES
,
&
IID_IHTMLTableCell
,
&
IID_IConnectionPointContainer
,
NULL
};
...
...
@@ -409,7 +410,7 @@ static const elem_type_info_t elem_type_infos[] = {
{
"!"
,
comment_iids
,
&
DIID_DispHTMLCommentElement
},
{
"IMG"
,
img_iids
,
&
DIID_DispHTMLImg
},
{
"TR"
,
tr_iids
,
&
DIID_DispHTMLTableRow
},
{
"TD"
,
td_iids
,
NULL
},
{
"TD"
,
td_iids
,
&
DIID_DispHTMLTableCell
},
{
"IFRAME"
,
iframe_iids
,
&
DIID_DispHTMLIFrame
},
{
"FORM"
,
form_iids
,
&
DIID_DispHTMLFormElement
},
{
"FRAME"
,
frame_iids
,
&
DIID_DispHTMLFrameElement
},
...
...
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