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 Date Row Test</title>
<linkr rel="localization" href="messenger/calendarDialog.ftl" />
</head>
<body>
<template id="calendarDialogRowTemplate">
<div class="calendar-dialog-row">
<slot name="icon"></slot>
<slot name="label"></slot>
<slot name="content"></slot>
</div>
</template>
<template id="calendarDialogDateRowTemplate">
<calendar-dialog-row>
<img
src=""
slot="icon"
class="icon-date-time"
data-l10n-id="calendar-dialog-date-row-icon"
/>
<div slot="label">
<span class="date-label"></span>
<img
src=""
class="icon-recurrence repeats"
data-l10n-id="calendar-dialog-date-row-recurring-icon"
hidden="hidden"
/>
</div>
</calendar-dialog-row>
</template>
<calendar-dialog-date-row></calendar-dialog-date-row>
</body>
</html>