SQLyog reads and presents the DDL information which is returned by executing SHOW CREATE TABLE query of the respective table. It can also be verified by executing the same command (SHOW CREATE TABLE…) from the command line and you may find that the constraint RESTRICT is simply not recorded by the server.
RESTRICT is default action and it does not matter if it is recorded server-side or not. Any other action then RESTRICT should be recorded of course. Therefore for an ON DELETE or ON UPDATE that is not specified, the default action is always RESTRICT.