summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shadow-dom/event-on-pseudo-element-crash.html
blob: c03f51a64f439e772ff56702dc132f8cd8c7938c (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
26
27
28
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://crbug.com/1180286">
<meta name="assert" content="The renderer should not crash.">

<span>This test passes if the renderer does not crash.</span>

<div>
  <option></option>
</div>

<style>
  div {
    direction: rtl;
    zoom: 0.01;
  }
  option {
    zoom: 5;
  }
  option::before {
    display: table-caption;
    overflow: scroll;
    content: open-quote;
    padding-right: 1px;
    -webkit-column-width: 1px;
  }
</style>