Home | History | Annotate | Download | only in dom

Lines Matching refs:commandName

4346 static Editor::Command command(Document* document, const String& commandName, bool userInterface = false)
4353 return frame->editor().command(commandName, userInterface ? CommandFromDOMWithUserInterface : CommandFromDOM);
4356 bool Document::execCommand(const String& commandName, bool userInterface, const String& value)
4374 Editor::Command editorCommand = command(this, commandName, userInterface);
4379 bool Document::queryCommandEnabled(const String& commandName)
4381 return command(this, commandName).isEnabled();
4384 bool Document::queryCommandIndeterm(const String& commandName)
4386 return command(this, commandName).state() == MixedTriState;
4389 bool Document::queryCommandState(const String& commandName)
4391 return command(this, commandName).state() == TrueTriState;
4394 bool Document::queryCommandSupported(const String& commandName)
4396 return command(this, commandName).isSupported();
4399 String Document::queryCommandValue(const String& commandName)
4401 return command(this, commandName).value();