summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/webcomponents/test_custom_element_template.html
blob: f077f84ebe6b3ba385893faa9ff7176b1303baac (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
28
29
30
31
32
33
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1091425
-->
<head>
  <title>Test for custom elements in template</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<template>
  <x-foo></x-foo>
</template>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1091425">Bug 1091425</a>
<script>

class XFoo extends HTMLElement {
  connectedCallback() {
    ok(false, "Connected callback should not be called for custom elements in templates.");
  }
};

customElements.define("x-foo", XFoo);

ok(true, "Connected callback should not be called for custom elements in templates.");

</script>
<template>
  <x-foo></x-foo>
</template>
</body>
</html>