Commit 3a520a5f authored by Alex Rudenko's avatar Alex Rudenko Committed by Chromium LUCI CQ

Update tests to allow enabling the flexbox experiment by default

Bug: chromium:1166710
Change-Id: Iad71b892a9b249427d13aea20df0864cf3733865
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2632959Reviewed-by: default avatarMathias Bynens <mathias@chromium.org>
Commit-Queue: Alex Rudenko <alexrudenko@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844500}
parent ceb30f4b
...@@ -23,6 +23,13 @@ ...@@ -23,6 +23,13 @@
if (message.startsWith('backend')) { if (message.startsWith('backend')) {
continue; continue;
} }
// TODO(crbug.com/1166710): Flexbox tooling is currently experimental so we skip
// the corresponding message to allow turning the experiment on and off easily.
// Once the experiment flag is removed, this check should be removed and test
// expectations have to be updated.
if (message.includes('setShowFlexOverlays')) {
continue;
}
message = message.replace(/"id":\d+,/, '"id":<number>,'); message = message.replace(/"id":\d+,/, '"id":<number>,');
TestRunner.addResult(message); TestRunner.addResult(message);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment