summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/make-editable-div-inline-and-set-contenteditable-of-input-to-false.html
blob: 1743a2641da33cef9d65f342858e75f6de13afac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="test-wait">
<head>
<meta charset="utf-8">
<title>Testcase for bug 650572 of Mozilla</title>
<script>
function boom()
{
  document.documentElement.offsetHeight;
  document.body.focus();
  document.querySelector("div").style.display = "inline";
  document.querySelector("input").contentEditable = "false";
  document.documentElement.removeAttribute("class");
}
</script>
</head>
<body contenteditable="true" onload="setTimeout(boom, 200);"><div><input></div></body>
</html>