@@ -4959,38 +4959,44 @@ JS::Value Document::named_item_value(FlyString const& name) const
4959
4959
}
4960
4960
4961
4961
// https://w3c.github.io/editing/docs/execCommand/#execcommand()
4962
- bool Document::exec_command (String, bool , String)
4962
+ bool Document::exec_command (String const & command , bool show_ui , String const & value )
4963
4963
{
4964
+ dbgln (" FIXME: document.execCommand(\" {}\" , {}, \" {}\" )" , command, show_ui, value);
4964
4965
return false ;
4965
4966
}
4966
4967
4967
4968
// https://w3c.github.io/editing/docs/execCommand/#querycommandenabled()
4968
- bool Document::query_command_enabled (String)
4969
+ bool Document::query_command_enabled (String const & command )
4969
4970
{
4971
+ dbgln (" FIXME: document.queryCommandEnabled(\" {}\" )" , command);
4970
4972
return false ;
4971
4973
}
4972
4974
4973
4975
// https://w3c.github.io/editing/docs/execCommand/#querycommandindeterm()
4974
- bool Document::query_command_indeterm (String)
4976
+ bool Document::query_command_indeterm (String const & command )
4975
4977
{
4978
+ dbgln (" FIXME: document.queryCommandIndeterm(\" {}\" )" , command);
4976
4979
return false ;
4977
4980
}
4978
4981
4979
4982
// https://w3c.github.io/editing/docs/execCommand/#querycommandstate()
4980
- bool Document::query_command_state (String)
4983
+ bool Document::query_command_state (String const & command )
4981
4984
{
4985
+ dbgln (" FIXME: document.queryCommandState(\" {}\" )" , command);
4982
4986
return false ;
4983
4987
}
4984
4988
4985
4989
// https://w3c.github.io/editing/docs/execCommand/#querycommandsupported()
4986
- bool Document::query_command_supported (String)
4990
+ bool Document::query_command_supported (String const & command )
4987
4991
{
4992
+ dbgln (" FIXME: document.queryCommandSupported(\" {}\" )" , command);
4988
4993
return false ;
4989
4994
}
4990
4995
4991
4996
// https://w3c.github.io/editing/docs/execCommand/#querycommandvalue()
4992
- String Document::query_command_value (String)
4997
+ String Document::query_command_value (String const & command )
4993
4998
{
4999
+ dbgln (" FIXME: document.queryCommandValue(\" {}\" )" , command);
4994
5000
return String {};
4995
5001
}
4996
5002
0 commit comments