blob: 5238d533cbb68edc847d37d011e1e36ce2149c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<style>
rt, script, body {
outline-style: solid;
position: absolute;
will-change: transform;
display: table-cell;
border-spacing: 4499;
}
</style>
Test passes if it does not CRASH in debug.
Note, this test does not have a DOCTYPE as the failure does not
reproduce with a DOCTYPE.
<rt>
<menu></menu>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.execCommand("selectAll");
document.designMode = "On";
document.execCommand("italic")
</script>
|