summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/media-generated-content.html
blob: 70c0e64b233029b51faf4e12d8434e93d6c0110c (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>

<style>
audio:after,
audio:before {
    display: inline;
    content: no-close-quote;
}
video:after,
video:before {
    display: inline;
    content: no-close-quote;
}
</style>

<script>
if (window.testRunner)
    testRunner.dumpAsText();
</script>

<audio controls></audio>

<video controls></video>

<p>Should not crash when ::before or ::after is used on media elements</p>