diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/wpt/__init__.py | 2 | ||||
-rw-r--r-- | python/wpt/importer/__init__.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/python/wpt/__init__.py b/python/wpt/__init__.py index 4369e147822..a1ecf5001c3 100644 --- a/python/wpt/__init__.py +++ b/python/wpt/__init__.py @@ -33,6 +33,8 @@ def create_parser(): help="Pass preferences to servo") 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") parser.add_argument('--log-servojson', action="append", type=mozlog.commandline.log_file, help="Servo's JSON logger of unexpected results") parser.add_argument('--always-succeed', default=False, action="store_true", diff --git a/python/wpt/importer/__init__.py b/python/wpt/importer/__init__.py index 7022b2a791f..789ee2b0a42 100644 --- a/python/wpt/importer/__init__.py +++ b/python/wpt/importer/__init__.py @@ -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 |