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
/
harness
/
resources
/
modal-dialog.html
blob
19a14e9d98632ba45b8a9dd29d7ba53cea3a1e1a
1
<html>
2
<head>
3
<script>
4
function
closeWindow
()
5
{
6
if
(
window
.
testRunner
) {
7
testRunner
.
notifyDone
();
8
}
9
opener
.
log
(
"Modal dialog closing."
);
10
if
(
window
.
testRunner
) {
11
testRunner
.
abortModal
();
12
}
13
close
();
14
}
15
</script>
16
</head>
17
18
<body
onload
=
"closeWindow()"
>
19
This is a modal dialog.
20
</body>
21
</html>