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
c5d75c3a
Commit
c5d75c3a
authored
Aug 07, 2014
by
Zhenbo Li
Committed by
Alexandre Julliard
Aug 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Better output when an exception is caught.
parent
fa675868
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
exectest.html
dlls/mshtml/tests/exectest.html
+2
-2
jstest.html
dlls/mshtml/tests/jstest.html
+1
-1
vbtest.html
dlls/mshtml/tests/vbtest.html
+1
-1
No files found.
dlls/mshtml/tests/exectest.html
View file @
c5d75c3a
...
...
@@ -55,7 +55,7 @@ try {
testPutSrc
();
testPutText
();
}
catch
(
e
)
{
ok
(
false
,
"Got an exception
"
);
ok
(
false
,
"Got an exception
"
+
e
.
message
);
}
function
testPutSrc2
()
{
...
...
@@ -123,7 +123,7 @@ document.body.onload = function() {
testPutSrc2
();
testPutText2
();
}
catch
(
e
)
{
ok
(
false
,
"got an exception
"
);
ok
(
false
,
"got an exception
"
+
e
.
message
);
}
external
.
reportSuccess
();
...
...
dlls/mshtml/tests/jstest.html
View file @
c5d75c3a
...
...
@@ -248,7 +248,7 @@ function runTest() {
try
{
runTests
();
}
catch
(
e
)
{
ok
(
false
,
"got exception
"
);
ok
(
false
,
"got exception
"
+
e
.
message
);
}
external
.
reportSuccess
();
...
...
dlls/mshtml/tests/vbtest.html
View file @
c5d75c3a
...
...
@@ -24,7 +24,7 @@ try {
counter
++
;
incCounter
(
2
);
}
catch
(
e
)
{
ok
(
false
,
"got an exception
"
);
ok
(
false
,
"got an exception
"
+
e
.
message
);
}
</script>
<script>
...
...
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