2017-04-19 15:11:47 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("defaultthemes/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Theme")
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Security")
|
|
|
|
|
|
|
|
with Files("pageinfo/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Page Info Window")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/about/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/alerts/**"):
|
2017-05-05 00:44:58 +03:00
|
|
|
BUG_COMPONENT = ("Toolkit", "Notifications and Alerts")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
|
|
|
with Files("test/captivePortal/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("test/chrome/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/contextMenu/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Menus")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/forms/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Layout: Form Controls")
|
|
|
|
|
|
|
|
with Files("test/pageinfo/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Page Info Window")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/performance/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-06-28 02:48:46 +03:00
|
|
|
with Files("test/performance/browser_appmenu_reflows.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Menus")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/permissions/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Preferences")
|
|
|
|
|
|
|
|
with Files("test/plugins/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Plug-ins")
|
|
|
|
|
|
|
|
with Files("test/popupNotifications/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Notifications and Alerts")
|
|
|
|
|
|
|
|
with Files("test/popups/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Notifications and Alerts")
|
|
|
|
|
|
|
|
with Files("test/referrer/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Document Navigation")
|
|
|
|
|
2018-01-18 18:05:36 +03:00
|
|
|
# TODO: Update this after bug 1435528 is resolved.
|
|
|
|
with Files("test/sanitize/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/siteIdentity/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Site Identity and Permission Panels")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/sidebar/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/static/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2018-03-14 01:21:47 +03:00
|
|
|
with Files("test/statuspanel/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/sync/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Sync")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/tabPrompts/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
|
|
|
with Files("test/tabcrashed/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
|
|
|
with Files("test/tabs/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("test/touch/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("test/urlbar/**"):
|
2017-09-06 10:10:01 +03:00
|
|
|
BUG_COMPONENT = ("Firefox", "Address Bar")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
|
|
|
with Files("test/webextensions/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "WebExtensions: Untriaged")
|
|
|
|
|
|
|
|
with Files("test/webrtc/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "WebRTC")
|
|
|
|
|
|
|
|
with Files("aboutNetError.xhtml"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Security")
|
|
|
|
|
|
|
|
with Files("blockedSite.xhtml"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Safe Browsing")
|
|
|
|
|
|
|
|
with Files("browser-addons.js"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Add-ons Manager")
|
|
|
|
|
|
|
|
with Files("*menu*"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Menus")
|
|
|
|
|
|
|
|
with Files("browser-compacttheme.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Themes")
|
|
|
|
|
|
|
|
with Files("browser-customization.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Toolbars and Customization")
|
|
|
|
|
|
|
|
with Files("browser-feeds.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Toolbars and Customization")
|
|
|
|
|
|
|
|
with Files("browser-fullZoom.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browsing")
|
|
|
|
|
|
|
|
with Files("browser-gestureSupport.js"):
|
|
|
|
BUG_COMPONENT = ("Core", "Widget: Cocoa")
|
|
|
|
|
|
|
|
with Files("browser-media.js"):
|
|
|
|
BUG_COMPONENT = ("Core", "Audio/Video: Playback")
|
|
|
|
|
|
|
|
with Files("browser-places.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Bookmarks & History")
|
|
|
|
|
|
|
|
with Files("browser-plugins.js"):
|
|
|
|
BUG_COMPONENT = ("Core", "Plug-ins")
|
|
|
|
|
|
|
|
with Files("browser-safebrowsing.js"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Safe Browsing")
|
|
|
|
|
2017-04-18 21:15:43 +03:00
|
|
|
with Files("browser-sync.js"):
|
2017-04-19 15:11:47 +03:00
|
|
|
BUG_COMPONENT = ("Firefox", "Sync")
|
|
|
|
|
|
|
|
with Files("browser-tabPreviews.xml"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
|
|
|
with Files("contentSearch*"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Search")
|
|
|
|
|
|
|
|
with Files("*.svg"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Theme")
|
|
|
|
|
|
|
|
with Files("hiddenWindow.xul"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Device Permissions")
|
|
|
|
|
|
|
|
with Files("macBrowserOverlay.xul"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Shell Integration")
|
|
|
|
|
|
|
|
with Files("tabbrowser*"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Tabbed Browser")
|
|
|
|
|
|
|
|
with Files("webext-panels*"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "WebExtensions: Frontend")
|
|
|
|
|
|
|
|
with Files("webrtcIndicator*"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Device Permissions")
|