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
b2297e20
Commit
b2297e20
authored
Nov 17, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Removed tests failing on IE7.
parent
27701555
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
jstest.html
dlls/mshtml/tests/jstest.html
+0
-2
No files found.
dlls/mshtml/tests/jstest.html
View file @
b2297e20
...
...
@@ -35,12 +35,10 @@ function test_createDocumentFragment() {
var
fragment
=
document
.
createDocumentFragment
();
ok
(
typeof
(
fragment
)
===
"object"
,
"typeof(fragmend) = "
+
typeof
(
fragment
));
ok
(
fragment
.
parentWindow
===
window
,
"fragment.parentWindow != window"
);
ok
(
fragment
.
nodeType
===
11
,
"fragment.nodeType = "
+
fragment
.
nodeType
);
ok
(
fragment
.
nodeName
===
"#document-fragment"
,
"fragment.nodeName = "
+
fragment
.
nodeName
);
var
cloned
=
fragment
.
cloneNode
(
true
);
ok
(
cloned
.
parentWindow
===
window
,
"cloned.parentWindow != window"
);
ok
(
cloned
.
nodeType
===
11
,
"cloned.nodeType = "
+
cloned
.
nodeType
);
ok
(
cloned
.
nodeName
===
"#document-fragment"
,
"cloned.nodeName = "
+
cloned
.
nodeName
);
}
...
...
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