Allow wpt commands to accept --with-layout-2013

This commit is contained in:
sagudev 2023-04-24 14:22:41 +02:00 committed by Martin Robinson
parent 98bae01f02
commit b3670c503d
2 changed files with 4 additions and 0 deletions

View file

@ -47,6 +47,8 @@ def create_parser():
parser = wptcommandline.create_parser_update()
parser.add_argument("--layout-2020", "--with-layout-2020", default=False, action="store_true",
help="Use expected results for the 2020 layout engine")
parser.add_argument("--layout-2013", "--with-layout-2013", default=True, action="store_true",
help="Use expected results for the 2013 layout engine")
return parser