Bug 1207734: followup: Temporarily avoid some tests for this bug. r=me

On a CLOSED TREE, since Android is barfing at the prefs key in the manifest:

  runByManifest mode must be enabled to set the `prefs` key

MozReview-Commit-ID: 2oK3CG69s9E
This commit is contained in:
Emilio Cobos Álvarez 2018-02-01 04:01:11 +01:00
Родитель 8b8051496a
Коммит 3935d1f0d4
3 изменённых файлов: 5 добавлений и 3 удалений

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

@ -34,7 +34,7 @@ support-files =
visited-lying-inner.html visited-lying-inner.html
visited-pref-iframe.html visited-pref-iframe.html
xbl_bindings.xml xbl_bindings.xml
prefs = layout.css.individual-transform.enabled=true ; prefs = layout.css.individual-transform.enabled=true
[test_acid3_test46.html] [test_acid3_test46.html]
[test_addSheet.html] [test_addSheet.html]

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

@ -42,7 +42,8 @@ for (var idx in gLonghandProperties) {
if (prop.pref && !IsCSSPropertyPrefEnabled(prop.pref)) { if (prop.pref && !IsCSSPropertyPrefEnabled(prop.pref)) {
continue; continue;
} }
if (!SpecialPowers.DOMWindowUtils.isStyledByServo && // FIXME(Bug 1207734).
if (// !SpecialPowers.DOMWindowUtils.isStyledByServo &&
gServoOnlyProperties.includes(prop.name)) { gServoOnlyProperties.includes(prop.name)) {
continue; continue;
} }

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

@ -280,7 +280,8 @@
(function test_bug_1207734 () { (function test_bug_1207734 () {
// The individual transform functions are not implemented on the Gecko style // The individual transform functions are not implemented on the Gecko style
// system. // system.
if (!SpecialPowers.DOMWindowUtils.isStyledByServo) { // FIXME(bug 1207734).
if (true || !SpecialPowers.DOMWindowUtils.isStyledByServo) {
return; return;
} }
// Test for rotate property serialization. // Test for rotate property serialization.