mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
e9dee823ef
- Bug 1231404 - SubscriptBaselineDropMin or SuperscriptBaselineDropMax are not read from the MATH table. r=jfkthame (4293e32fef) - Bug 953408 - switch to unprefixed hyphens property in tests. r=jfkthame (2ee7ee6bd4) - Bug 1207061 - Reftest for buggy bidi font that fails with graphite 1.3.2. r=jdaggett (3d1ae98e9e) - Bug 1161900 - Basic reftest to check that Balinese two-part vowel characters are shaped properly. r=jdaggett (5bd6653da0) - Bug 686225 - Reftest for Indic shaping with buggy OS X (AAT) fonts. r=jdaggett (76e81fba3e) - Bug 1156111 patch 1 - Give layout/reftests/ its own moz.build file. r=gps (8c1b128a6b) - Bug 1156111 patch 2 - Add BUG_COMPONENT metadata for tests in layout/reftests/. r=gps (c9089a56cf)
38 lines
797 B
INI
38 lines
797 B
INI
# -*- Mode: python; c-basic-offset: 4; 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 = ('Core', 'Layout')
|
|
|
|
DIRS += [
|
|
'style',
|
|
'base',
|
|
'generic',
|
|
'forms',
|
|
'tables',
|
|
'svg',
|
|
'xul',
|
|
'ipc',
|
|
'mathml',
|
|
'inspector',
|
|
'tools/recording',
|
|
'reftests',
|
|
]
|
|
|
|
if CONFIG['NS_PRINTING']:
|
|
DIRS += ['printing']
|
|
|
|
TEST_DIRS += [
|
|
'tools/reftest',
|
|
]
|
|
|
|
DIRS += ['build', 'media']
|
|
|
|
if CONFIG['MOZ_DEBUG']:
|
|
TEST_DIRS += ['tools/layout-debug']
|
|
|
|
CRASHTEST_MANIFESTS += ['../testing/crashtest/crashtests.list']
|