Revision control
Copy as Markdown
Other Tools
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Calendar Dialog Description Row Test</title>
<linkr rel="localization" href="messenger/calendarDialog.ftl" />
<script type="module" src="chrome://messenger/content/calendar-dialog-description-row.mjs"></script>
</head>
<body>
<template id="calendarDialogRowTemplate">
<div class="row">
<slot name="icon"></slot>
<slot name="label"></slot>
<slot name="content"></slot>
</div>
</template>
<template id="calendarDialogDescriptionRowTemplate">
<calendar-dialog-row>
<img
src=""
slot="icon"
class="icon-description"
data-l10n-id="calendar-dialog-description-row-icon"
/>
<span
slot="label"
class="row-label"
data-l10n-id="calendar-dialog-description-label"
></span>
<div slot="content"></div>
</calendar-dialog-row>
</template>
<calendar-dialog-description-row id="expandingDescription">
</calendar-dialog-description-row>
<calendar-dialog-description-row id="expandedDescription" type="full">
</calendar-dialog-description-row>
</body>
</html>