Revision control
Copy as Markdown
Other Tools
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml"
scrolling="false">
<head>
<link rel="stylesheet" href="chrome://global/skin/global.css" />
<link rel="stylesheet" href="chrome://messenger/skin/menulist.css" />
<script type="module" src="chrome://messenger/content/menulist-editable.mjs" />
</head>
<html:body xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<button id="before" label="I'm just a button" onclick="alert('I\'m a button!')"/>
<menulist>
<menupopup native="false">
<menuitem value="foo" label="foo"/>
<menuitem value="bar" label="bar"/>
</menupopup>
</menulist>
<menulist is="menulist-editable">
<menupopup native="false">
<menuitem value="foo" label="foo"/>
<menuitem value="bar" label="bar"/>
</menupopup>
</menulist>
<menulist is="menulist-editable" editable="true" width="100">
<menupopup native="false">
<menuitem value="foo" label="foo"/>
<menuitem value="bar" label="bar"/>
</menupopup>
</menulist>
<button id="after" label="I'm just a button"/>
</html:body>
</html>