Skip to content
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.

Fix for FF throwing NS_ERROR_UNEXPECTED in updateToolbar #66

Closed
wants to merge 1 commit into from

Conversation

jordandh
Copy link
Contributor

Added a check to see if a command is enabled before querying the command's state. This is a fix for the exception FF throws when querying a command state that is disabled. See issue #23

I read through some of the spec for rich text editing and it states that a command can be enabled or disabled at any given time. When no text is selected on the page some of the commands become disabled. For example the insertunorderedlist command is disabled. document.queryCommandEnabled can be used to check for this condition. The spec does not specify what should happen if document.queryCommandState is called on a disabled command and that the browsers do different things from throwing exceptions to returning false or an empty string. With that in mind there are two ways to fix this. You can add a try/catch for FF (which throws an exception) but you might catch other types of errors so that isn't a good solution. I went with checking the enabled state of the command manually because it reduces the overhead of handling an exception and doesn't hide errors. It also matches the looseness of the spec in this area.

…and's state.

This is a fix for the exception FF throws when querying a command state that is disabled.
@jordandh jordandh mentioned this pull request May 22, 2013
@jordandh
Copy link
Contributor Author

Closing in favor of my other pull request #68 that fixes another issue and adds support for commands with arguments.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant