Commit b4a76c04 authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

SuperSize: Exclude assets/unwind_cfi_* in milestone diffs

This file does not actually exist for stable & beta channels.

Change-Id: I0885a565933b7457c77c5c43eaf218175cbb04ad
Reviewed-on: https://chromium-review.googlesource.com/c/1281282Reviewed-by: default avatarEric Stevenson <estevenson@chromium.org>
Commit-Queue: agrieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/master@{#599818}
parent 1eb27a4f
......@@ -123,7 +123,10 @@ function isGreaterOrEqual(v1, v2) {
form.addEventListener('submit', event => {
event.preventDefault();
const dataUrl = getDataUrl();
window.open(`viewer.html?load_url=milestones/${dataUrl}`);
// Exclude unwind_cfi via a filter as a work-around for it being included
// in the size data. It's a file that exists in dev but not beta/stable.
window.open(`viewer.html?load_url=milestones/${dataUrl}` +
`&exclude=assets%2Funwind_cfi`);
});
})();
</script>
......
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