Revision control
Copy as Markdown
Other Tools
<?xml version="1.0"?>
<!-- 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
<html
id="dictionaryDlg"
scrolling="false"
persist="screenX screenY"
lightweightthemes="true"
>
<head>
<title>&windowTitle.label;</title>
<link
rel="stylesheet"
/>
<link rel="localization" href="branding/brand.ftl" />
<script
defer="defer"
></script>
<script
defer="defer"
></script>
<script
defer="defer"
></script>
<script
defer="defer"
></script>
<script
defer="defer"
></script>
<script
defer="defer"
></script>
</head>
<html:body
>
<dialog
buttonlabelaccept="&CloseButton.label;"
buttonaccesskeyaccept="&CloseButton.accessKey;"
buttons="accept"
>
<hbox flex="1">
<div class="flex-items-center grid-item-span-row">
<xul:label
id="WordInputLabel"
value="&wordEditField.label;"
control="WordInput"
accesskey="&wordEditField.accessKey;"
/>
</div>
<div>
<input
id="WordInput"
type="text"
style="width: 14.5em"
aria-labelledby="WordInputLabel"
/>
</div>
<div>
<xul:button
id="AddWord"
oncommand="AddWord()"
label="&AddButton.label;"
accesskey="&AddButton.accessKey;"
/>
</div>
<div class="flex-items-center grid-item-span-row">
<xul:label
value="&DictionaryList.label;"
control="DictionaryList"
accesskey="&DictionaryList.accessKey;"
/>
</div>
<div>
<xul:richlistbox
id="DictionaryList"
style="width: 15em; height: 10em"
/>
</div>
<div>
<xul:button
id="RemoveWord"
oncommand="RemoveWord()"
label="&RemoveButton.label;"
accesskey="&RemoveButton.accessKey;"
/>
</div>
</div>
</hbox>
</dialog>
</html:body>
</html>