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
/
remove-format-iframe-in-button.html
blob
a59ca0dcac85ca80eeee3413b593bc6ce2aff2bb
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<script>
5
if
(
window
.
testRunner
)
6
testRunner
.
dumpAsText
();
7
8
onload
=
function
() {
9
document
.
designMode
=
"on"
;
10
document
.
execCommand
(
"SelectAll"
);
11
document
.
execCommand
(
"RemoveFormat"
);
12
document
.
body
.
textContent
=
"PASS if Blink doesn't crash."
;
13
};
14
</script>
15
</head>
16
<body>
17
<button><iframe></iframe></button>
18
</body>
19
</html>