summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/editing/execCommand/indent-nested-blockquotes-crash.html
blob: 54b8986c184e0d55ac46ff73572370f777675251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<style>
* { display: -webkit-inline-box; }
.CLASS11 { float: right; }
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

window.onload = function () {
    document.designMode = 'on';
    document.execCommand('SelectAll', false)
    document.execCommand('Indent', false, false);
    document.execCommand('Indent', false, false);
    document.documentElement.innerHTML = 'PASS. Blink didn\'t crash.';
};
</script>
</head>
<body>aaa<div class="CLASS11"></div><div>bbb</div></body>
</html>