Backed out changeset e21ae6fdc524 (bug 1690898) for Event-dispatch-redispatch.html failures CLOSED TREE

This commit is contained in:
Bogdan Tara 2021-02-05 16:12:09 +02:00
Родитель 51135ce4d4
Коммит b3d9616178
4 изменённых файлов: 12 добавлений и 11 удалений

Просмотреть файл

@ -10496,9 +10496,6 @@
#---------------------------------------------------------------------------
# Global user preference for disabling native theme in content processes.
#
# NOTE(emilio): When changing this make sure to update the non_native_theme
# entry in python/mozbuild/mozbuild/mozinfo.py
- name: widget.disable-native-theme-for-content
type: RelaxedAtomicBool
#if defined(XP_LINUX) && defined(NIGHTLY_BUILD) && !defined(ANDROID)

Просмотреть файл

@ -96,7 +96,6 @@ def build_dict(config, env=os.environ):
d["artifact"] = substs.get("MOZ_ARTIFACT_BUILDS") == "1"
d["ccov"] = substs.get("MOZ_CODE_COVERAGE") == "1"
d["cc_type"] = substs.get("CC_TYPE")
d["non_native_theme"] = d["os"] == "linux" and d["nightly_build"]
def guess_platform():
if d["buildapp"] == "browser":

Просмотреть файл

@ -1,4 +1,9 @@
[Event-dispatch-redispatch.html]
[Redispatching mouseup event whose default action dispatches a click event]
expected:
if (os == "linux") and not non_native_theme: FAIL
if os == "mac": PASS
if os == "android": PASS
if (os == "linux") and release_or_beta: FAIL
if os == "linux": PASS
FAIL

Просмотреть файл

@ -1,24 +1,24 @@
[baseline-alignment-and-overflow.tentative.html]
[<input type="file" style="overflow: visible; appearance: auto;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL
[<input type="file" style="overflow: scroll; appearance: auto;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL
[<input type="file" style="overflow: visible; appearance: none;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL
[<input type="file" style="overflow: hidden; appearance: none;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL
[<input type="file" style="overflow: scroll; appearance: none;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL
[<input type="file" style="overflow: hidden; appearance: auto;">]
expected:
if (os == "linux") and not non_native_theme: FAIL
if (os == "linux") and release_or_beta: FAIL