summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/reactions/customized-builtins/HTMLStyleElement.html
blob: d68d5cb76dd3d527f7caefd4a60cd930884f449a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<title>Custom Elements: CEReactions on HTMLStyleElement interface</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<meta name="assert" content="media of HTMLStyleElement interface must have CEReactions">
<meta name="help" content="https://html.spec.whatwg.org/#the-style-element">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/custom-elements-helpers.js"></script>
<script src="../resources/reactions.js"></script>

<script>

function getParentElement() {
  return document.head;
}

testReflectAttributeWithParentNode(
  'media', 'media', 'print',
  'screen', 'media on HTMLStyleElement', 'style',
  getParentElement, HTMLStyleElement
);

</script>