mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
15 lines
323 B
HTML
15 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<x-foo></x-foo>
|
|
<script>
|
|
var prototype = Object.create(HTMLElement.prototype);
|
|
prototype.createdCallback = function() {
|
|
createdCallbackCalled = true;
|
|
}
|
|
document.registerElement('x-foo', {prototype: prototype});
|
|
</script>
|
|
</body>
|
|
</html>
|