repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
dom
/
comment-dom-node.html
blob
68a1d0a20dd00f6e0696a41db1a9ceb709a23d06
1
<html>
2
<body>
3
<div
id
=
"test"
>
<!--SUCESS-->
</div>
4
<script>
5
if
(
window
.
testRunner
)
6
testRunner
.
dumpAsText
();
7
x
=
document
.
getElementById
(
"test"
).
firstChild
;
8
if
(
x
&&
x
.
nodeType
==
Node
.
COMMENT_NODE
)
9
document
.
write
(
x
.
nodeValue
);
10
else
11
document
.
write
(
"FAIL"
);
12
</script>
13
</body>
14
</html>