summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/paint-timing/with-first-paint/mask-image.html
blob: e69e562d106d77974ba88dfc767cb93caa5a6ba2 (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
<!DOCTYPE html>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/utils.js"></script>
<style>
  #masked {
    width: 0px;
    height: 100px;
    -webkit-mask-image: url(../resources/circle.svg);
    mask-image: url(../resources/circle.svg);
  }
</style>
<div id='masked'></div>
<script>
setup({"hide_test_state": true});
promise_test(async t => {
  const onload = new Promise(r => window.addEventListener('load', r));
  await onload;
  return assertNoFirstContentfulPaint(t).then(() => {
    document.getElementById('masked').style.width = '100px';
  }).then(() => {
    return assertFirstContentfulPaint(t);
  });
}, 'Mask image triggers First Contentful Paint.');
</script>
</body>