mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
23 lines
567 B
HTML
23 lines
567 B
HTML
<html>
|
|
<head>
|
|
<script language="JavaScript" src="importList.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form name="foo">
|
|
<textarea rows="25" cols="50" name="testList"></textarea><br>
|
|
<script language="javascript">
|
|
if (include)
|
|
{
|
|
document.write('<input type="checkbox" name="clear_all" checked>');
|
|
document.write(' Clear all selections before import.<br>');
|
|
}
|
|
</script>
|
|
<input type="button" value="Import" onclick="doImport();">
|
|
<input type="button" value="Cancel" onclick="window.close();">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|