68.14.6 - testing

This commit is contained in:
Fedor 2025-01-22 01:26:17 +02:00
parent d3ff103fd5
commit 02671ecd7b
1313 changed files with 32065 additions and 1618 deletions

View File

@ -27,7 +27,6 @@ include ../../dom/plugins/test/crashtests/crashtests.list
include ../../dom/smil/crashtests/crashtests.list
include ../../dom/svg/crashtests/crashtests.list
include ../../dom/workers/test/crashtests/crashtests.list
include ../../dom/xbl/crashtests/crashtests.list
include ../../dom/xml/crashtests/crashtests.list
include ../../dom/xslt/crashtests/crashtests.list
include ../../dom/xul/crashtests/crashtests.list

View File

@ -21,8 +21,8 @@ class TestL10n(PuppeteerMixin, MarionetteTestCase):
dtds = ['chrome://branding/locale/brand.dtd',
'chrome://browser/locale/baseMenuOverlay.dtd']
value = self.l10n.localize_entity(dtds, 'helpSafeMode.label')
elm = self.marionette.find_element(By.ID, 'helpSafeMode')
value = self.l10n.localize_entity(dtds, 'aboutProduct2.label')
elm = self.marionette.find_element(By.ID, 'aboutName')
self.assertEqual(value, elm.get_attribute('label'))
self.assertRaises(NoSuchElementException,

View File

@ -616,10 +616,7 @@ async function webdriverSendKeysToElement(
event.input(el);
event.change(el);
} else if (
(el.type == "date" || el.type == "time") &&
Preferences.get("dom.forms.datetime")
) {
} else if (el.type == "date" || el.type == "time") {
interaction.setFormControlValue(el, value);
} else {
event.sendKeysToElement(value, el, win);
@ -635,10 +632,7 @@ async function legacySendKeysToElement(el, value, a11y) {
event.input(el);
event.change(el);
} else if (
(el.type == "date" || el.type == "time") &&
Preferences.get("dom.forms.datetime")
) {
} else if (el.type == "date" || el.type == "time") {
interaction.setFormControlValue(el, value);
} else {
let visibilityCheckEl = el;

View File

@ -39,7 +39,7 @@ class AppInfo(BaseLib):
try {
return Components.classes["@mozilla.org/intl/localeservice;1"]
.getService(Components.interfaces.mozILocaleService)
.getAppLocaleAsLangTag();
.getAppLocaleAsBCP47();
} catch (e) {
return Components.classes["@mozilla.org/chrome/chrome-registry;1"]
.getService(Components.interfaces.nsIXULChromeRegistry)

View File

@ -301,10 +301,7 @@ impl<'a> PrefTokenizer<'a> {
}
fn is_space(c: char) -> bool {
match c {
' ' | '\t' | '\r' | '\n' => true,
_ => false,
}
matches!(c, ' ' | '\t' | '\r' | '\n')
}
fn skip_whitespace(&mut self) -> Option<char> {
@ -775,7 +772,7 @@ pub fn serialize_token<T: Write>(token: &PrefToken, output: &mut T) -> Result<()
data_buf.reserve(data.len() + 4);
data_buf.push_str("/*");
data_buf.push_str(data.borrow());
data_buf.push_str("*");
data_buf.push('*');
&*data_buf
}
PrefToken::CommentLine(ref data, _) => {
@ -786,7 +783,7 @@ pub fn serialize_token<T: Write>(token: &PrefToken, output: &mut T) -> Result<()
}
PrefToken::CommentBashLine(ref data, _) => {
data_buf.reserve(data.len() + 1);
data_buf.push_str("#");
data_buf.push('#');
data_buf.push_str(data.borrow());
&*data_buf
}

View File

@ -17,10 +17,6 @@ user_pref("media.mediasource.mp4.enabled", true);
user_pref("media.mediasource.webm.enabled", true);
user_pref("media.av1.enabled", true);
user_pref("media.eme.enabled", true);
// Enable some form preferences for testing
user_pref("dom.experimental_forms", true);
user_pref("dom.forms.color", true);
user_pref("dom.forms.datetime", true);
user_pref("dom.forms.datetime.others", true);
// Enable Gamepad
user_pref("dom.gamepad.enabled", true);

View File

@ -1708,7 +1708,7 @@ SpecialPowersAPI.prototype = {
return this._getMUDV(window).fullZoom;
},
getDeviceFullZoom(window) {
return this._getMUDV(window).deviceFullZoom;
return this._getMUDV(window).deviceFullZoomForTest;
},
setFullZoom(window, zoom) {
this._getMUDV(window).fullZoom = zoom;

View File

@ -176,6 +176,12 @@
"minbytes": 0,
"maxbytes": 87040
},
"c:\\windows\\system32\\windows.globalization.dll": {
"mincount": 0,
"maxcount": 8,
"minbytes": 0,
"maxbytes": 126976
},
"c:\\windows\\system32\\spool\\drivers\\color": {
"mincount": 0,
"maxcount": 2,

View File

@ -1 +0,0 @@
prefs: [layout.css.image-orientation.initial-from-image:true, image.honor-orientation-metadata:true]

View File

@ -1,7 +1,2 @@
[has-instance.html]
[instanceof must return false across different globals, for platform objects]
expected: FAIL
[platform objects do not have Symbol.hasInstance installed]
expected: FAIL
prefs: [dom.webidl.crosscontext_hasinstance.enabled:false]

View File

@ -1,2 +0,0 @@
[base-uri_iframe_sandbox.sub.html]
expected: ERROR

View File

@ -0,0 +1,4 @@
[iframe-all-local-schemes-inherit-self.sub.html]
expected: TIMEOUT
[<iframe>'s about:blank inherits policy.]
expected: TIMEOUT # bug 543435

View File

@ -1,4 +0,0 @@
[iframe-all-local-schemes.sub.html]
[<iframe sandbox src='blob:...'>'s inherits policy. (opaque origin sandbox)]
expected: FAIL

View File

@ -1,8 +0,0 @@
[iframe-srcdoc-inheritance.html]
expected: TIMEOUT
[First image should be blocked]
expected: NOTRUN
[Second image should be blocked]
expected: NOTRUN

View File

@ -1,8 +0,0 @@
[inherited-csp-list-modifications-are-local.html]
expected: TIMEOUT
[Test that parent document image loads]
expected: FAIL
[Test that spv event is fired]
expected: NOTRUN

View File

@ -1,4 +0,0 @@
[sandboxed-blob-scheme.html]
[Violation report status OK.]
expected: FAIL

View File

@ -0,0 +1,3 @@
[floats-clear-multicol-balancing-003.html]
expected: FAIL
bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1637108

View File

@ -1,2 +0,0 @@
[content-counter-004.xht]
expected: FAIL

View File

@ -0,0 +1,2 @@
[content-counter-006.xht]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -0,0 +1,2 @@
[content-counter-007.xht]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -0,0 +1,2 @@
[content-counter-008.xht]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -0,0 +1,2 @@
[counters-010.xht]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -1,2 +0,0 @@
[mix-blend-mode-with-transform-and-preserve-3D.html]
expected: FAIL

View File

@ -1,18 +1,2 @@
[background-image-invalid.html]
[e.style['background-image'\] = "radial-gradient(ellipse -20px 30px at center, red, blue)" should not set the property value]
expected: FAIL
[e.style['background-image'\] = "repeating-radial-gradient(-20% 30% at center, red, blue)" should not set the property value]
expected: FAIL
[e.style['background-image'\] = "radial-gradient(circle -10px at center, red, blue)" should not set the property value]
expected: FAIL
[e.style['background-image'\] = "repeating-radial-gradient(20px -30px ellipse at center, red, blue)" should not set the property value]
expected: FAIL
[e.style['background-image'\] = "radial-gradient(20px -30px at center, red, blue)" should not set the property value]
expected: FAIL
[e.style['background-image'\] = "repeating-radial-gradient(-10px at center, red, blue)" should not set the property value]
expected: FAIL
prefs: [layout.css.cross-fade.enabled:true]

View File

@ -0,0 +1,2 @@
[background-image-valid.html]
prefs: [layout.css.cross-fade.enabled:true]

View File

@ -1,4 +0,0 @@
[height-valid.html]
[e.style['height'\] = "fit-content" should set the property value]
expected: FAIL

View File

@ -1,4 +0,0 @@
[max-height-valid.html]
[e.style['max-height'\] = "fit-content" should set the property value]
expected: FAIL

View File

@ -1,4 +0,0 @@
[max-width-valid.html]
[e.style['max-width'\] = "fit-content" should set the property value]
expected: FAIL

View File

@ -1,4 +0,0 @@
[width-valid.html]
[e.style['width'\] = "fit-content" should set the property value]
expected: FAIL

View File

@ -0,0 +1,4 @@
[borders-003.html]
expected:
if webrender: PASS
FAIL

View File

@ -0,0 +1,4 @@
[borders-004.html]
expected:
if webrender: PASS
FAIL

View File

@ -0,0 +1,4 @@
[borders-005.html]
expected:
if webrender: PASS
FAIL

View File

@ -1,18 +1,4 @@
[break-inside-computed.html]
[Property break-inside value 'avoid-page' computes to 'avoid-page']
expected: FAIL
[Property break-inside value 'avoid-column' computes to 'avoid-column']
expected: FAIL
[Property break-inside value 'avoid-region' computes to 'avoid-region']
expected: FAIL
[Property break-inside value 'avoid-column']
expected: FAIL
[Property break-inside value 'avoid-page']
expected: FAIL
[Property break-inside value 'avoid-region']
expected: FAIL

View File

@ -1,10 +1,4 @@
[break-inside-valid.html]
[e.style['break-inside'\] = "avoid-column" should set the property value]
expected: FAIL
[e.style['break-inside'\] = "avoid-page" should set the property value]
expected: FAIL
[e.style['break-inside'\] = "avoid-region" should set the property value]
expected: FAIL

View File

@ -0,0 +1 @@
prefs: [layout.css.cascade-layers.enabled:true]

View File

@ -0,0 +1,6 @@
[layer-cssom-order-reverse.html]
[Insert layer invalidates @property]
expected: FAIL
[Delete layer invalidates @property]
expected: FAIL

View File

@ -0,0 +1,12 @@
[layer-property-override.html]
[@property override between layers]
expected: FAIL
[@property override update with appended sheet 1]
expected: FAIL
[@property override update with appended sheet 2]
expected: FAIL
[@property unlayered overrides layered]
expected: FAIL

View File

@ -0,0 +1,15 @@
[layer-scroll-timeline-override.html]
[@scroll-timeline layered overrides unlayered]
expected: FAIL
[@scroll-timeline override between layers]
expected: FAIL
[@scroll-timeline override update with appended sheet 1]
expected: FAIL
[@scroll-timeline override update with appended sheet 2]
expected: FAIL
[@scroll-timeline unlayered overrides layered]
expected: FAIL

View File

@ -0,0 +1,19 @@
[layer-statement-before-import.html]
expected: ERROR
[length and item]
expected: FAIL
[insertRule before imports]
expected: FAIL
[insertRule after imports]
expected: FAIL
[insert other rules to pre-import layer statements fails]
expected: FAIL
[deleteRule before imports]
expected: FAIL
[deleteRule after imports]
expected: FAIL

View File

@ -0,0 +1,39 @@
[layer-import.html]
[@import url("nonexist.css") layer; should be a valid layered import rule]
expected: FAIL
[@import url("nonexist.css") layer(A); should be a valid layered import rule]
expected: FAIL
[@import url("nonexist.css") layer(A.B); should be a valid layered import rule]
expected: FAIL
[@import url(nonexist.css) layer; should be a valid layered import rule]
expected: FAIL
[@import url(nonexist.css) layer(A); should be a valid layered import rule]
expected: FAIL
[@import url(nonexist.css) layer(A.B); should be a valid layered import rule]
expected: FAIL
[@import "nonexist.css" layer; should be a valid layered import rule]
expected: FAIL
[@import "nonexist.css" layer(A); should be a valid layered import rule]
expected: FAIL
[@import "nonexist.css" layer(A.B); should be a valid layered import rule]
expected: FAIL
[@import url("nonexist.css") layer(); should still be a valid import rule with an invalid layer declaration]
expected: FAIL
[@import url("nonexist.css") layer(A B); should still be a valid import rule with an invalid layer declaration]
expected: FAIL
[@import url("nonexist.css") layer(A . B); should still be a valid import rule with an invalid layer declaration]
expected: FAIL
[@import url("nonexist.css") layer(A, B, C); should still be a valid import rule with an invalid layer declaration]
expected: FAIL

View File

@ -0,0 +1,2 @@
[revert-layer-002.html]
expected: FAIL

View File

@ -0,0 +1,2 @@
[revert-layer-010.html]
expected: FAIL

View File

@ -0,0 +1,3 @@
[env-in-custom-properties.tentative.html]
[Substitution of unrecognized env() causes guaranteed-invalid]
expected: FAIL

View File

@ -0,0 +1,4 @@
[flex-aspect-ratio-img-column-011.html]
[.flexbox 5]
expected: FAIL # bogus test
bug: https://github.com/web-platform-tests/wpt/pull/26299

View File

@ -1,2 +0,0 @@
[flex-minimum-width-flex-items-004.xht]
expected: FAIL

View File

@ -1,2 +0,0 @@
[flex-minimum-width-flex-items-005.xht]
expected: FAIL

View File

@ -1,2 +0,0 @@
[flex-minimum-width-flex-items-006.xht]
expected: FAIL

View File

@ -0,0 +1,3 @@
[flex-minimum-width-flex-items-013.html]
expected: FAIL
bug: https://github.com/web-platform-tests/wpt/pull/26299

View File

@ -0,0 +1,17 @@
[negative-overflow.html]
bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1626108
[.flexbox 10]
expected: FAIL
[.flexbox 8]
expected: FAIL
[.flexbox 9]
expected: FAIL
[.flexbox 5]
expected: FAIL # Overflow due to wrap-reverse becomes scrollable after bug 1042151.
[.flexbox 11]
expected: FAIL # Overflow due to wrap-reverse becomes scrollable after bug 1042151.

View File

@ -0,0 +1,3 @@
[scrollbars-no-margin.html]
fuzzy: # The text and scrollbar on Windows without webrender are reliably fuzzy.
if (os == "win") and not webrender: maxDifference=53-138;totalPixels=1498-2052

View File

@ -1,2 +0,0 @@
[table-as-item-narrow-content.html]
expected: FAIL

View File

@ -1,2 +0,0 @@
[table-as-item-wide-content.html]
expected: FAIL

View File

@ -0,0 +1,45 @@
[grid-container-percentage-002.html]
[.grid 19]
expected: FAIL
[.grid 18]
expected: FAIL
[.grid 15]
expected: FAIL
[.grid 17]
expected: FAIL
[.grid 16]
expected: FAIL
[.grid 11]
expected: FAIL
[.grid 10]
expected: FAIL
[.grid 13]
expected: FAIL
[.grid 12]
expected: FAIL
[.grid 7]
expected: FAIL
[.grid 9]
expected: FAIL
[.grid 24]
expected: FAIL
[.grid 21]
expected: FAIL
[.grid 22]
expected: FAIL
[.grid 23]
expected: FAIL

View File

@ -0,0 +1,40 @@
[grid-intrinsic-track-sizes-001.html]
['grid' with: grid-template-columns: max-content max-content; and grid-template-rows: max-content max-content;]
expected: FAIL
['grid' with: grid-template-columns: auto auto; and grid-template-rows: auto auto;]
expected: FAIL
['grid' with: grid-template-columns: max-content min-content; and grid-template-rows: max-content min-content;]
expected: FAIL
['grid' with: grid-template-columns: 20px minmax(max-content, 6px); and grid-template-rows: 20px minmax(max-content, 6px);]
expected: FAIL
['grid' with: grid-template-columns: minmax(max-content, 10px) minmax(max-content, 10px); and grid-template-rows: minmax(max-content, 10px) minmax(max-content, 10px);]
expected: FAIL
['grid' with: grid-template-columns: minmax(0, max-content) minmax(0, max-content); and grid-template-rows: minmax(0, max-content) minmax(0, max-content);]
expected: FAIL
['grid' with: grid-template-columns: 20px minmax(max-content, 30px); and grid-template-rows: 20px minmax(max-content, 30px);]
expected: FAIL
['grid' with: grid-template-columns: 20px minmax(0, max-content); and grid-template-rows: 20px minmax(0, max-content);]
expected: FAIL
['grid' with: grid-template-columns: minmax(max-content, 10px); and grid-template-rows: minmax(max-content, 10px);]
expected: FAIL
['grid' with: grid-template-columns: max-content; and grid-template-rows: max-content;]
expected: FAIL
['grid' with: grid-template-columns: minmax(0, auto) minmax(0, auto); and grid-template-rows: minmax(0, auto) minmax(0, auto);]
expected: FAIL
['grid' with: grid-template-columns: 20px max-content; and grid-template-rows: 20px max-content;]
expected: FAIL
['grid' with: grid-template-columns: minmax(0, max-content); and grid-template-rows: minmax(0, max-content);]
expected: FAIL

View File

@ -0,0 +1,3 @@
[table-grid-item-dynamic-004.html]
expected: FAIL
bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1521088

View File

@ -0,0 +1 @@
prefs: [layout.css.image-set.enabled:true]

View File

@ -1,2 +1 @@
leak-threshold: [default:51200]
prefs: [image.honor-orientation-metadata:true, layout.css.image-orientation.initial-from-image:true]

View File

@ -1,2 +1,2 @@
[image-orientation-background-image.html]
fuzzy: 2;40
fuzzy: 3;49

View File

@ -1,2 +1,2 @@
[image-orientation-mask-image.html]
fuzzy: 1;22
fuzzy: 2;26

View File

@ -0,0 +1,5 @@
[image-set-parsing.html]
[content: image-set(linear-gradient(black, white) 1x, 'example.png' 4x) [ parsable \]]
expected: FAIL
[content: image-set(url('example.png') 192dpi, linear-gradient(black, white) 1x) [ parsable \]]
expected: FAIL

View File

@ -1,6 +1,4 @@
[inheritance.html]
prefs: [layout.css.image-orientation.initial-from-image:true]
[Property image-rendering inherits]
expected: FAIL

View File

@ -0,0 +1,142 @@
[list-style-image-interpolation.html]
[CSS Transitions: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (0) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [inherit\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [initial\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [none\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from neutral to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (-0.3) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [linear-gradient(-45deg, red, yellow)\] to [linear-gradient(45deg, blue, orange)\] at (0) should be [linear-gradient(-45deg, red, yellow)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [url(../resources/green-20.png)\] to [linear-gradient(45deg, blue, orange)\] at (-0.3) should be [url(../resources/green-20.png)\]]
expected: FAIL
[CSS Transitions with transition: all: property <list-style-image> from [unset\] to [url(../resources/stripes-20.png)\] at (0) should be [url(../resources/blue-20.png)\]]
expected: FAIL
[CSS Transitions: property <list-style-image> from [none\] to [url(../resources/stripes-20.png)\] at (0) should be [none\]]
expected: FAIL

View File

@ -0,0 +1,2 @@
[counter-list-item-2.html]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -0,0 +1,2 @@
[counter-list-item-3.html]
prefs: [layout.css.counter-ancestor-scope.enabled:false]

View File

@ -1,30 +0,0 @@
[list-style-image-computed.sub.html]
[Property list-style-image value 'radial-gradient(circle calc(-0.5em + 10px) at calc(-1em + 10px) calc(-2em + 10px), rgb(255, 0, 0), rgb(0, 0, 255))' computes to 'radial-gradient(0px at -30px -70px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(ellipse calc(0.5em + 10px) calc(-0.5em + 10px) at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))' computes to 'radial-gradient(30px 0px at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(10px at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))' computes to 'radial-gradient(10px at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'linear-gradient(to left bottom, red , blue )' computes to 'linear-gradient(to left bottom, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(ellipse calc(-0.5em + 10px) calc(0.5em + 10px) at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))' computes to 'radial-gradient(0px 30px at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'linear-gradient(to left bottom, red , blue )']
expected: FAIL
[Property list-style-image value 'radial-gradient(ellipse calc(-0.5em + 10px) calc(0.5em + 10px) at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(10px at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(circle calc(-0.5em + 10px) at calc(-1em + 10px) calc(-2em + 10px), rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL
[Property list-style-image value 'radial-gradient(ellipse calc(0.5em + 10px) calc(-0.5em + 10px) at 20px 30px, rgb(255, 0, 0), rgb(0, 0, 255))']
expected: FAIL

View File

@ -1,3 +0,0 @@
[list-style-image-valid.html]
[e.style['list-style-image'\] = "linear-gradient(to left bottom, red, blue)" should set the property value]
expected: FAIL

View File

@ -1,2 +0,0 @@
[multicol-br-inside-avoidcolumn-001.xht]
expected: FAIL

View File

@ -0,0 +1,2 @@
[size-001.html]
prefs: [layout.css.page-size.enabled:true]

View File

@ -0,0 +1,4 @@
[position-absolute-replaced-minmax.html]
[minmax replaced IMG 37]
expected: FAIL
bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1732780

View File

@ -3,6 +3,4 @@
expected: FAIL
[sticky position offset should be able to cause overflow]
expected:
if (os == "android") and e10s: FAIL
expected: FAIL

View File

@ -0,0 +1,21 @@
[at-property-animation.html]
[@keyframes picks up the latest @property in the document]
expected: FAIL
[Ongoing animation picks up redeclared custom property]
expected: FAIL
[Ongoing animation picks up redeclared intial value]
expected: FAIL
[Ongoing animation picks up redeclared inherits flag]
expected: FAIL
[Ongoing animation matches new keyframes against the current registration]
expected: FAIL
[Ongoing animation picks up redeclared meaning of 'unset']
expected: FAIL
[@keyframes works with @property]
expected: FAIL

View File

@ -0,0 +1,180 @@
[at-property-cssom.html]
[Rule for --no-descriptors returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --valid returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --initial-value-only returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --no-syntax returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --valid returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --initial-value-only returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --valid-whitespace returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --valid-universal returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --valid-universal returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --valid-universal returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --valid-whitespace returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --no-syntax has expected cssText]
expected: FAIL
[Rule for --syntax-only returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --no-syntax returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --initial-value-only returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --no-initial-value has expected cssText]
expected: FAIL
[Rule for --no-syntax returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --no-initial-value returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --valid-whitespace has expected cssText]
expected: FAIL
[Rule for --syntax-only returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --no-descriptors returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --syntax-only returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --no-inherits returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --valid-whitespace returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --valid-reverse has expected cssText]
expected: FAIL
[Rule for --valid-reverse returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --no-inherits returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --vALId returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --no-inherits has expected cssText]
expected: FAIL
[Rule for --valid-reverse returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --vALId has expected cssText]
expected: FAIL
[Rule for --no-descriptors has expected cssText]
expected: FAIL
[Rule for --syntax-only has expected cssText]
expected: FAIL
[Rule for --valid-universal returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --initial-value-only has expected cssText]
expected: FAIL
[Rule for --syntax-only returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --no-syntax returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --inherits-only returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --no-initial-value returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --initial-value-only returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --inherits-only has expected cssText]
expected: FAIL
[Rule for --vALId returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --valid returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --no-initial-value returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --valid returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --valid-universal has expected cssText]
expected: FAIL
[Rule for --valid has expected cssText]
expected: FAIL
[Rule for --inherits-only returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --valid-reverse returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --no-descriptors returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --no-inherits returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --inherits-only returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --inherits-only returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --valid-whitespace returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --vALId returns expected value for CSSPropertyRule.name]
expected: FAIL
[Rule for --no-descriptors returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --valid-reverse returns expected value for CSSPropertyRule.initialValue]
expected: FAIL
[Rule for --vALId returns expected value for CSSPropertyRule.inherits]
expected: FAIL
[Rule for --no-inherits returns expected value for CSSPropertyRule.syntax]
expected: FAIL
[Rule for --no-initial-value returns expected value for CSSPropertyRule.inherits]
expected: FAIL

View File

@ -0,0 +1,150 @@
[at-property.html]
[Rule applied [<transform-list>, rotateX(0deg), false\]]
expected: FAIL
[Rule applied [<color>, rgb(1, 2, 3), false\]]
expected: FAIL
[Attribute 'inherits' returns expected value for ["false"\]]
expected: FAIL
[Rule applied [<number>, 2.5, false\]]
expected: FAIL
[Rule applied [<angle>, 42deg, false\]]
expected: FAIL
[Attribute 'inherits' returns expected value for [0\]]
expected: FAIL
[Rule applied [<angle>, 1turn, false\]]
expected: FAIL
[Rule applied [<length-percentage>, 10px, false\]]
expected: FAIL
[Rule applied [<length-percentage>, 10%, false\]]
expected: FAIL
[Attribute 'syntax' returns expected value for [rgb(255, 0, 0)\]]
expected: FAIL
[Rule applied [<integer>, 5, false\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [red\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["<color># | <image> | none"\]]
expected: FAIL
[Rule applied [*, if(){}, false\]]
expected: FAIL
[Rule applied [<color>, green, false\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [rgb(1, 2, 3)\]]
expected: FAIL
[Rule applied [<resolution>, 96dpi, false\]]
expected: FAIL
[Attribute 'inherits' returns expected value for [none\]]
expected: FAIL
[Non-inherited properties do not inherit]
expected: FAIL
[Attribute 'inherits' returns expected value for ["true"\]]
expected: FAIL
[Rule applied [<color>, tomato, false\]]
expected: FAIL
[Rule applied [<time>, 10s, false\]]
expected: FAIL
[Rule applied [<length>, 10px, false\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [var(--x)\]]
expected: FAIL
[Rule applied [<transform-list>, rotateX(0deg) translateX(10px), false\]]
expected: FAIL
[Rule applied [<length-percentage>, calc(10% + 10px), false\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["notasyntax"\]]
expected: FAIL
[Rule applied [<time>, 1000ms, false\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["foo | bar | baz"\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [if(){}\]]
expected: FAIL
[Attribute 'syntax' returns expected value for [foo | bar\]]
expected: FAIL
[Attribute 'inherits' returns expected value for [1\]]
expected: FAIL
[Rule applied [<image>, url("http://a/"), false\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [10px\]]
expected: FAIL
[Attribute 'inherits' returns expected value for [true\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["*"\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["<color>"\]]
expected: FAIL
[Attribute 'initial-value' returns expected value for [foo\]]
expected: FAIL
[Attribute 'syntax' returns expected value for [red\]]
expected: FAIL
[Attribute 'syntax' returns expected value for [<color>\]]
expected: FAIL
[Rule applied [<percentage>, 10%, false\]]
expected: FAIL
[Rule applied [<url>, url("http://a/"), false\]]
expected: FAIL
[Initial value may be omitted for universal registration]
expected: FAIL
[Rule applied [<color>, tomato, true\]]
expected: FAIL
[Attribute 'syntax' returns expected value for ["<color> | none"\]]
expected: FAIL
[Rule applied [<resolution>, 50dppx, false\]]
expected: FAIL
[Initial values substituted as computed value]
expected: FAIL
[Attribute 'inherits' returns expected value for [calc(0)\]]
expected: FAIL
[Attribute 'inherits' returns expected value for [false\]]
expected: FAIL
[Rule applied [<transform-function>, rotateX(0deg), false\]]
expected: FAIL

View File

@ -0,0 +1,2 @@
[registered-property-revert.html]
expected: ERROR

View File

@ -11,3 +11,5 @@
[A var() cycle between a syntax:'*' property and an unregistered property is handled correctly.]
expected: FAIL
[Invalid at computed-value time triggers 'unset' behavior]
expected: FAIL

View File

@ -1,2 +0,0 @@
[file-chooser-button-001.tentative.html]
prefs: [layout.css.file-chooser-button.enabled:true]

View File

@ -0,0 +1,2 @@
[file-selector-button-001.tentative.html]
prefs: [layout.css.file-selector-button.enabled:true]

View File

@ -0,0 +1,28 @@
[first-letter-allowed-properties.html]
[border should be applied to first-letter pseudo elements.]
expected: FAIL
[backgroundPosition should be applied to first-letter pseudo elements.]
expected: FAIL
[textJustify should be applied to first-letter pseudo elements.]
expected: FAIL
[borderImage should be applied to first-letter pseudo elements.]
expected: FAIL
[fontVariationSettings should be applied to first-letter pseudo elements.]
expected:
if (processor == "x86") and (os == "win"): FAIL
[margin should be applied to first-letter pseudo elements.]
expected: FAIL
[padding should be applied to first-letter pseudo elements.]
expected: FAIL
[font should be applied to first-letter pseudo elements.]
expected: FAIL
[borderRadius should be applied to first-letter pseudo elements.]
expected: FAIL

View File

@ -1,39 +0,0 @@
[first-letter-property-whitelist.html]
prefs: [layout.css.text-underline-position.enabled:true]
[Whitelisted property backgroundPosition should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property border should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property borderImage should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property borderRadius should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property font should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property fontVariationSettings should be applied to first-letter pseudo elements.]
expected:
if (os == "android") and not e10s: PASS
if ((os == "mac") and (version == "OS X 10.14")) or (version == "OS X 10.13"): PASS
if ((os == "mac") and (version == "OS X 10.14.5")) or (version == "OS X 10.13"): PASS
if os == "linux": PASS
if (os == "win") and (version == "10.0.17134"): PASS
if (os == "android") and e10s: PASS
FAIL
[Whitelisted property margin should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property padding should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property opacity should be applied to first-letter pseudo elements.]
expected: FAIL
[Whitelisted property textJustify should be applied to first-letter pseudo elements.]
expected: FAIL

View File

@ -0,0 +1,2 @@
[marker-content-016.html]
expected: FAIL

View File

@ -0,0 +1,2 @@
[marker-text-transform-uppercase.html]
expected: FAIL

View File

@ -0,0 +1,96 @@
[marker-supported-properties-in-animation.html]
[Transition of white-space in ::marker]
expected: FAIL
[Transition of font in ::marker]
expected: FAIL
[Animation of list-style in ::marker]
expected: FAIL
[Animation of font in ::marker]
expected: FAIL
[Transition of list-style in ::marker]
expected: FAIL
[Animation of white-space in ::marker]
expected: FAIL
[Transition of tab-size in ::marker]
expected: FAIL
[Animation of letter-spacing in ::marker]
expected: FAIL
[Transition of text-emphasis-color in ::marker]
expected: FAIL
[Animation of tab-size in ::marker]
expected: FAIL
[Animation of word-spacing in ::marker]
expected: FAIL
[Animation of text-shadow in ::marker]
expected: FAIL
[Transition of text-emphasis-position in ::marker]
expected: FAIL
[Animation of text-emphasis-position in ::marker]
expected: FAIL
[Animation of line-break in ::marker]
expected: FAIL
[Transition of text-emphasis in ::marker]
expected: FAIL
[Animation of text-emphasis in ::marker]
expected: FAIL
[Transition of word-spacing in ::marker]
expected: FAIL
[Animation of word-break in ::marker]
expected: FAIL
[Animation of text-emphasis-style in ::marker]
expected: FAIL
[Transition of word-break in ::marker]
expected: FAIL
[Animation of overflow-wrap in ::marker]
expected: FAIL
[Transition of text-emphasis-style in ::marker]
expected: FAIL
[Animation of hyphens in ::marker]
expected: FAIL
[Transition of text-decoration-skip-ink in ::marker]
expected: FAIL
[Animation of text-emphasis-color in ::marker]
expected: FAIL
[Transition of overflow-wrap in ::marker]
expected: FAIL
[Transition of line-break in ::marker]
expected: FAIL
[Transition of text-shadow in ::marker]
expected: FAIL
[Animation of text-decoration-skip-ink in ::marker]
expected: FAIL
[Transition of hyphens in ::marker]
expected: FAIL
[Transition of letter-spacing in ::marker]
expected: FAIL

View File

@ -7,3 +7,27 @@
[Property white-space value 'nowrap' in ::marker]
expected: FAIL
[Property animation value '1s linear 2s infinite alternate forwards paused anim' in ::marker]
expected: FAIL
[Property transition value 'display 1s linear 2s' in ::marker]
expected: FAIL
[Property text-shadow value 'rgb(0, 255, 0) 1px 2px 3px' in ::marker]
expected: FAIL
[Property text-decoration-skip-ink value 'none' in ::marker]
expected: FAIL
[Property text-emphasis value 'dot rgb(0, 255, 0)' in ::marker]
expected: FAIL
[Property text-emphasis-position value 'under left' in ::marker]
expected: FAIL
[Property text-emphasis-style value 'dot' in ::marker]
expected: FAIL
[Property text-emphasis-color value 'rgb(0, 255, 0)' in ::marker]
expected: FAIL

View File

@ -0,0 +1,3 @@
[ruby-lang-specific-style-001.html]
expected:
if (os == "win"): FAIL # bug 1134947

View File

@ -0,0 +1 @@
prefs: [layout.css.fit-content-function.enabled:true]

View File

@ -1 +1,2 @@
leak-threshold: [default:51200]
prefs: [layout.css.aspect-ratio.enabled:true]
leak-threshold: [default:51200, tab:51200]

View File

@ -0,0 +1,2 @@
[abspos-014.html]
expected: FAIL

View File

@ -0,0 +1,2 @@
[flex-aspect-ratio-008.html]
expected: FAIL

View File

@ -0,0 +1,2 @@
[flex-aspect-ratio-008.tentative.html]
expected: FAIL

View File

@ -0,0 +1,3 @@
[quirks-mode-003.html]
[body height should match documentElement due to min-height: auto]
expected: FAIL

View File

@ -0,0 +1,2 @@
[replaced-element-003.html]
expected: FAIL

View File

@ -0,0 +1,3 @@
[replaced-element-010.html]
expected:
if os == "android": FAIL

View File

@ -0,0 +1,3 @@
[replaced-element-011.html]
expected:
if os == "android": FAIL

View File

@ -1,10 +0,0 @@
[fit-content-percentage-padding.html]
[Initial layout]
expected: FAIL
[Shrink width]
expected: FAIL
[Grow width]
expected: FAIL

View File

@ -1,9 +0,0 @@
[height-valid.html]
[e.style['height'\] = "fit-content(10%)" should set the property value]
expected: FAIL
[e.style['height'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL
[e.style['height'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL

View File

@ -1,9 +0,0 @@
[max-height-valid.html]
[e.style['max-height'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL
[e.style['max-height'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL
[e.style['max-height'\] = "fit-content(10%)" should set the property value]
expected: FAIL

View File

@ -1,9 +0,0 @@
[max-width-valid.html]
[e.style['max-width'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL
[e.style['max-width'\] = "fit-content(10%)" should set the property value]
expected: FAIL
[e.style['max-width'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL

View File

@ -1,9 +0,0 @@
[min-height-valid.html]
[e.style['min-height'\] = "fit-content(10%)" should set the property value]
expected: FAIL
[e.style['min-height'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL
[e.style['min-height'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL

View File

@ -1,9 +0,0 @@
[min-width-valid.html]
[e.style['min-width'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL
[e.style['min-width'\] = "fit-content(10%)" should set the property value]
expected: FAIL
[e.style['min-width'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL

View File

@ -1,9 +0,0 @@
[width-valid.html]
[e.style['width'\] = "fit-content(10% - 0.5em)" should set the property value]
expected: FAIL
[e.style['width'\] = "fit-content(0.5em)" should set the property value]
expected: FAIL
[e.style['width'\] = "fit-content(10%)" should set the property value]
expected: FAIL

Some files were not shown because too many files have changed in this diff Show More