mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Update text editing tests (flutter/engine#37642)
This commit is contained in:
parent
9d3a153bfa
commit
dbdeabc507
@ -2565,10 +2565,9 @@ Future<void> testMain() async {
|
||||
expect(input.style.backgroundColor, 'transparent');
|
||||
expect(input.style.caretColor, 'transparent');
|
||||
expect(input.style.outline, 'none');
|
||||
expect(input.style.border, 'none');
|
||||
expect(input.style.border.split(' '), contains('none'));
|
||||
expect(input.style.textShadow, 'none');
|
||||
// TODO(hterkelsen): https://github.com/flutter/flutter/issues/115327
|
||||
}, skip: isFirefox);
|
||||
});
|
||||
|
||||
test('prevents effect of (forced-colors: active)', () {
|
||||
editingStrategy!.enable(
|
||||
@ -2579,7 +2578,9 @@ Future<void> testMain() async {
|
||||
|
||||
final DomHTMLElement input = editingStrategy!.activeDomElement;
|
||||
expect(input.style.getPropertyValue('forced-color-adjust'), 'none');
|
||||
// TODO(hterkelsen): https://github.com/flutter/flutter/issues/115327
|
||||
// TODO(hterkelsen): Firefox does not support forced-color-adjust even
|
||||
// though it supports forced-colors. Safari doesn't support forced-colors
|
||||
// so this isn't a problem there.
|
||||
}, skip: isFirefox || isSafari);
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user