mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
9 lines
257 B
HTML
9 lines
257 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
try {
|
|
var selectElem = document.createElementNS("http://www.w3.org/1999/xhtml", "select");
|
|
selectElem.QueryInterface(Components.interfaces.nsISelectElement);
|
|
selectElem.getOptionIndex(null, 0, true);
|
|
} catch (e) {
|
|
}
|
|
</script>
|