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
/
parser
/
setTimeout-open.html
blob
84d1a6efeff3c4af182cfb472076ae3c657b642c
1
<SCRIPT>
2
if (window.testRunner) {
3
testRunner.dumpAsText();
4
testRunner.waitUntilDone();
5
}
6
setTimeout(function () {
7
document.open();
8
document.write(
"1<br>"
);
9
document.write(
"2<br>"
);
10
document.close();
11
if (window.testRunner)
12
testRunner.notifyDone();
13
},
0
);
14
</SCRIPT>