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
bb90785a
Commit
bb90785a
authored
Sep 12, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLAnchorElement stub implementation.
parent
1ab3dbd5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
1 deletion
+6
-1
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlanchor.c
dlls/mshtml/htmlanchor.c
+0
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+4
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
No files found.
dlls/mshtml/Makefile.in
View file @
bb90785a
...
@@ -12,6 +12,7 @@ C_SRCS = \
...
@@ -12,6 +12,7 @@ C_SRCS = \
conpoint.c
\
conpoint.c
\
editor.c
\
editor.c
\
hlink.c
\
hlink.c
\
htmlanchor.c
\
htmlbody.c
\
htmlbody.c
\
htmldoc.c
\
htmldoc.c
\
htmldoc3.c
\
htmldoc3.c
\
...
...
dlls/mshtml/htmlanchor.c
0 → 100644
View file @
bb90785a
This diff is collapsed.
Click to expand it.
dlls/mshtml/htmlelem.c
View file @
bb90785a
...
@@ -1274,6 +1274,7 @@ void HTMLElement_Create(HTMLDOMNode *node)
...
@@ -1274,6 +1274,7 @@ void HTMLElement_Create(HTMLDOMNode *node)
const
PRUnichar
*
class_name
;
const
PRUnichar
*
class_name
;
nsresult
nsres
;
nsresult
nsres
;
static
const
WCHAR
wszA
[]
=
{
'A'
,
0
};
static
const
WCHAR
wszBODY
[]
=
{
'B'
,
'O'
,
'D'
,
'Y'
,
0
};
static
const
WCHAR
wszBODY
[]
=
{
'B'
,
'O'
,
'D'
,
'Y'
,
0
};
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszINPUT
[]
=
{
'I'
,
'N'
,
'P'
,
'U'
,
'T'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
static
const
WCHAR
wszSELECT
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
0
};
...
@@ -1300,7 +1301,9 @@ void HTMLElement_Create(HTMLDOMNode *node)
...
@@ -1300,7 +1301,9 @@ void HTMLElement_Create(HTMLDOMNode *node)
nsAString_GetData
(
&
class_name_str
,
&
class_name
,
NULL
);
nsAString_GetData
(
&
class_name_str
,
&
class_name
,
NULL
);
if
(
!
strcmpW
(
class_name
,
wszBODY
))
if
(
!
strcmpW
(
class_name
,
wszA
))
HTMLAnchorElement_Create
(
ret
);
else
if
(
!
strcmpW
(
class_name
,
wszBODY
))
HTMLBodyElement_Create
(
ret
);
HTMLBodyElement_Create
(
ret
);
else
if
(
!
strcmpW
(
class_name
,
wszINPUT
))
else
if
(
!
strcmpW
(
class_name
,
wszINPUT
))
HTMLInputElement_Create
(
ret
);
HTMLInputElement_Create
(
ret
);
...
...
dlls/mshtml/mshtml_private.h
View file @
bb90785a
...
@@ -415,6 +415,7 @@ void detach_selection(HTMLDocument*);
...
@@ -415,6 +415,7 @@ void detach_selection(HTMLDocument*);
void
detach_ranges
(
HTMLDocument
*
);
void
detach_ranges
(
HTMLDocument
*
);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLElement_Create
(
HTMLDOMNode
*
);
void
HTMLAnchorElement_Create
(
HTMLElement
*
);
void
HTMLBodyElement_Create
(
HTMLElement
*
);
void
HTMLBodyElement_Create
(
HTMLElement
*
);
void
HTMLInputElement_Create
(
HTMLElement
*
);
void
HTMLInputElement_Create
(
HTMLElement
*
);
void
HTMLSelectElement_Create
(
HTMLElement
*
);
void
HTMLSelectElement_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