summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/first-line-first-letter-insert-crash.html
blob: bc22aae409b80ee62f3079cb31e89b2130da8270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<title>Should not crash when inserting an element inside a :first-line pseudo.</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
<style>
p:first-line, p:first-letter {
  font-family: serif;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<p id=target>
  test<sup>sup</sup>
</p>
<script>
test(()=>{
  const target = document.getElementById('target');
  target.insertBefore(document.createElement('img'), target.lastChild)
});
</script>