summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/track/track-element/track-css-cue-pseudo-class.html
blob: d18f8b55cd434feb80f8b35337fb0060f242d75f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
:cue { color: red; }
:cue(i) { color: red; }
</style>
<script>
test(function() {
  assert_equals(document.styleSheets[0].cssRules.length, 0);
}, ":cue pseudo-class is not supported and dropped during parsing");
</script>