summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/outdent-in-meter-indented-by-legend-in-css-mode.html
blob: af20ea81283ba8ba3e277f239dd7ea85551c1e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener("load", () => {
  document.execCommand("styleWithCSS", false, "true");
  document.getSelection().collapse(document.querySelector("label"), 0);
  document.execCommand("outdent");
});
</script>
</head>
<body>
<li contenteditable>
<legend style="margin-right: 43%">
<meter>
<mi dir="rtl">8</mi>
<label>
<dir></dir>
</label>
</meter>
</legend>
</li>
</body>
</html>