This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Reland "[web] Update text editing test skips" #37655
Merged
harryterkelsen
merged 4 commits into
main
from
revert-37653-revert-37642-fix-textediting-tests
Aug 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
69d8b48
Revert "Revert "Update text editing tests (#37642)" (#37653)"
hterkelsen e6c71d5
make test work in firefox
harryterkelsen edfa978
Merge branch 'main' into revert-37653-revert-37642-fix-textediting-tests
harryterkelsen a2ce97e
Merge branch 'main' into revert-37653-revert-37642-fix-textediting-tests
harryterkelsen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
This reverts commit e56ed93.
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we still run the test and just alter expectations on different browsers? The prod code will run on all browsers, it just produces different results.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. on Firefox and Safari we would be testing that 'forced-color-adjust' is not set even though we try to set it |
||
| }, skip: isFirefox || isSafari); | ||
| }); | ||
| } | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the actual value? I can't tell why the split is necessary. Maybe leave a comment with an explanation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the expectations