mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-29 10:32:23 +00:00
08f421be7c
- 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) - Bug 1153407 - browser_toolbox_options_enable_serviceworkers_testing.js breaks other tests, needs to be e10s. r=ochameau (556a1364a0) - Bug 1150054, part 1 - Pull down the upstreamed version of EventWatcher from the web-platform-tests js harness into imptests. r=Ms2ger (d77d33d62d) - fix test file (2dd7d20fa8) - Bug 1173288 - Update testharness code in imptests; rs=jgraham (cfabd5a670) - bug 1224165 - Remove some Makefiles in js/xpconnect/tests/. r=glandium (424ee2fc95) - Bug 1186940 - Prevent leaking Debugger objects on toolbox close. r=jryans (fb25133351) - Bug 994555 - Adds contextmenu items to edit add and delete attributes; r=pbro (8fc519a452) - Bug 835896 - Make inspector searchbox also provide results matching text or attributes in the page;r=pbrosset (e22e11b12b) - Bug 1108042 - No autoblackboxing of minified sources when they've been already checked. r=ejpbruel (42cdb62575) - bits of NO BUG - s/if(/if (/ in toolkit/devtools JS; r=jimb DONTBUILD (e0c8f7ad58) - add and shuffle around some tests (c91d7bf912) - bits of Bug 1202902 - Fix the world. (84e1fd88bd) - Bug 1201008 - only add a breakpoint in the debugger if a source is actually loaded. r=bgrins (c63ac35123) - Bug 1219572 - Give the heap view's tree items a little space between the function name and source; r=jsantell DONTBUILD (2fe9adaa49) - Bug 1219421 - Guide users to recording allocations when no allocation stacks are present; r=jsantell (304a35da7e) - Bug 1218670 - Add % to heap view tree items; r=jsantell (212a1403a2) - Bug 1219820 - Do not try and select the hidden root when navigating the heap view tree with keyboard shortcuts; r=jsantell (b2a0dd9e13) - Bug 1219071 - Cache the results of the dfs when rendering the tree widget; r=jsantell (ec4a705b37) - Bug 1218673 - Clean up toolbar stlying and be more responsive in the memory tool. r=fitzgen (57948229e4) - Bug 1221673 - Add support for filtering censuses to memory tool's frontend; r=jsantell,vporof (57a0d4dd3f)
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']
|