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
99f376dc
Commit
99f376dc
authored
Nov 30, 2008
by
Andrew Nguyen
Committed by
Alexandre Julliard
Dec 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Implement the String.bold() method.
parent
a8dff20f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
string.c
dlls/jscript/string.c
+2
-2
api.js
dlls/jscript/tests/api.js
+9
-0
No files found.
dlls/jscript/string.c
View file @
99f376dc
...
...
@@ -174,8 +174,8 @@ static HRESULT String_blink(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
static
HRESULT
String_bold
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
sp
)
{
FIXME
(
"
\n
"
)
;
return
E_NOTIMPL
;
static
const
WCHAR
boldtagW
[]
=
{
'B'
,
0
}
;
return
do_attributeless_tag_format
(
dispex
,
lcid
,
flags
,
dp
,
retv
,
ei
,
sp
,
boldtagW
)
;
}
/* ECMA-262 3rd Edition 15.5.4.5 */
...
...
dlls/jscript/tests/api.js
View file @
99f376dc
...
...
@@ -287,6 +287,15 @@ ok(tmp === "<BLINK>test</BLINK>", "'test'.blink() = " + tmp);
tmp
=
"test"
.
blink
(
3
);
ok
(
tmp
===
"<BLINK>test</BLINK>"
,
"'test'.blink(3) = "
+
tmp
);
tmp
=
""
.
bold
();
ok
(
tmp
===
"<B></B>"
,
"''.bold() = "
+
tmp
);
tmp
=
""
.
bold
(
3
);
ok
(
tmp
===
"<B></B>"
,
"''.bold(3) = "
+
tmp
);
tmp
=
"test"
.
bold
();
ok
(
tmp
===
"<B>test</B>"
,
"'test'.bold() = "
+
tmp
);
tmp
=
"test"
.
bold
(
3
);
ok
(
tmp
===
"<B>test</B>"
,
"'test'.bold(3) = "
+
tmp
);
var
arr
=
new
Array
();
ok
(
typeof
(
arr
)
===
"object"
,
"arr () is not object"
);
ok
((
arr
.
length
===
0
),
"arr.length is not 0"
);
...
...
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