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
/
editing
/
execCommand
/
indent-head-crash.html
blob
4c6570aa894fc8ac44e48d514aded1f0bc53ce2f
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
head {
6
display: table-caption;
7
height:
100
px;
8
width:
100
px;
9
background-color: red;
10
}
11
</style>
12
<script>
13
if
(
window
.
testRunner
)
14
testRunner
.
dumpAsText
();
15
16
onload
=
function
() {
17
document
.
designMode
=
'on'
;
18
document
.
execCommand
(
'SelectAll'
);
19
document
.
execCommand
(
'Indent'
);
20
document
.
open
();
21
document
.
write
(
'PASS if Blink doesn
\'
t crash.'
);
22
};
23
</script>
24
</head>
25
<body>
26
foo
27
</body>
28
</html>