1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2# vim: set filetype=python:
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7with Files("**"):
8    BUG_COMPONENT = ("Firefox", "General")
9
10with Files("components/style/**"):
11    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
12
13with Files("components/style_derive/**"):
14    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
15
16with Files("components/style_traits/**"):
17    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
18
19with Files("components/selectors/**"):
20    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
21
22with Files("ports/geckolib/**"):
23    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
24
25with Files("tests/unit/style/**"):
26    BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
27