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
77ee756c
Commit
77ee756c
authored
Nov 30, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLTable interface stub implementation.
parent
ce81e30f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+3
-0
htmltable.c
dlls/mshtml/htmltable.c
+0
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
No files found.
dlls/mshtml/Makefile.in
View file @
77ee756c
...
...
@@ -25,6 +25,7 @@ C_SRCS = \
htmlselect.c
\
htmlstyle.c
\
htmlstylesheet.c
\
htmltable.c
\
htmltextcont.c
\
htmltextarea.c
\
htmlwindow.c
\
...
...
dlls/mshtml/htmlelem.c
View file @
77ee756c
...
...
@@ -1293,6 +1293,7 @@ HTMLElement *HTMLElement_Create(nsIDOMNode *nsnode)
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszOPTION
[]
=
{
'O'
,
'P'
,
'T'
,
'I'
,
'O'
,
'N'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszTABLE
[]
=
{
'T'
,
'A'
,
'B'
,
'L'
,
'E'
,
0
};
static
const
WCHAR
wszTEXTAREA
[]
=
{
'T'
,
'E'
,
'X'
,
'T'
,
'A'
,
'R'
,
'E'
,
'A'
,
0
};
nsres
=
nsIDOMNode_QueryInterface
(
nsnode
,
&
IID_nsIDOMHTMLElement
,
(
void
**
)
&
nselem
);
...
...
@@ -1314,6 +1315,8 @@ HTMLElement *HTMLElement_Create(nsIDOMNode *nsnode)
ret
=
HTMLOptionElement_Create
(
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszSELECT
))
ret
=
HTMLSelectElement_Create
(
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszTABLE
))
ret
=
HTMLTable_Create
(
nselem
);
else
if
(
!
strcmpW
(
class_name
,
wszTEXTAREA
))
ret
=
HTMLTextAreaElement_Create
(
nselem
);
...
...
dlls/mshtml/htmltable.c
0 → 100644
View file @
77ee756c
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
77ee756c
...
...
@@ -442,6 +442,7 @@ HTMLElement *HTMLBodyElement_Create(nsIDOMHTMLElement*);
HTMLElement
*
HTMLInputElement_Create
(
nsIDOMHTMLElement
*
);
HTMLElement
*
HTMLOptionElement_Create
(
nsIDOMHTMLElement
*
);
HTMLElement
*
HTMLSelectElement_Create
(
nsIDOMHTMLElement
*
);
HTMLElement
*
HTMLTable_Create
(
nsIDOMHTMLElement
*
);
HTMLElement
*
HTMLTextAreaElement_Create
(
nsIDOMHTMLElement
*
);
void
HTMLElement2_Init
(
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