Index: chrome/content/ui/composer.js |
=================================================================== |
--- a/chrome/content/ui/composer.js |
+++ b/chrome/content/ui/composer.js |
@@ -224,7 +224,7 @@ |
for (let typeNode = E("typeGroup").firstChild; typeNode; typeNode = typeNode.nextSibling) |
{ |
let value = typeNode.getAttribute("value"); |
- if (value == "document") |
+ if (value == "document" || value == "genericblock" || value == "generichide") |
Thomas Greiner
2016/01/06 15:44:51
What about "elemhide"? Similar to these options "e
Sebastian Noack
2016/01/06 15:49:33
Interestingly, "ELEMHIDE" is skipped above. So no
Thomas Greiner
2016/01/06 16:07:02
I assume that's because the composer only creates
Sebastian Noack
2016/01/06 16:15:10
I wonder whether we should expose generichide and
|
disableElement(typeNode, type != "whitelist", "checked", false); |
if (!typeNode._defaultType) |