mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-21 04:31:26 +00:00
33 lines
810 B
HTML
33 lines
810 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1091425
|
|
-->
|
|
<head>
|
|
<title>Test for custom elements in template</title>
|
|
<script type="text/javascript" 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>
|
|
|
|
var p = {};
|
|
p.createdCallback = function() {
|
|
ok(false, "Created callback should not be called for custom elements in templates.");
|
|
};
|
|
|
|
document.registerElement("x-foo", { prototype: p });
|
|
|
|
ok(true, "Created callback should not be called for custom elements in templates.");
|
|
|
|
</script>
|
|
<template>
|
|
<x-foo></x-foo>
|
|
</template>
|
|
</body>
|
|
</html>
|